diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-03-03 23:13:41 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-03 16:13:41 -0700 |
commit | 202d31641780efd0641ba27fc43f9bb2f887b18a (patch) | |
tree | 0e044df719e2afb15510992677825c74875e9ca3 | |
parent | dbfea53d0210a2bc55e2e2052a165053cdc04c07 (diff) | |
download | gcc-202d31641780efd0641ba27fc43f9bb2f887b18a.zip gcc-202d31641780efd0641ba27fc43f9bb2f887b18a.tar.gz gcc-202d31641780efd0641ba27fc43f9bb2f887b18a.tar.bz2 |
function.c (current_function_has_computed_jump): Remove duplicate definition.
* function.c (current_function_has_computed_jump): Remove duplicate
definition.
From-SVN: r25571
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/function.c | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5fc8a34..59a22f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 4 00:05:44 1999 Jeffrey A Law (law@cygnus.com) + + * function.c (current_function_has_computed_jump): Remove duplicate + definition. + Wed Mar 3 19:09:11 1999 Jim Wilson <wilson@cygnus.com> * m68k/m68020-elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Undef. diff --git a/gcc/function.c b/gcc/function.c index 79ca24d..4d67366 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -135,13 +135,6 @@ int current_function_has_nonlocal_label; int current_function_has_nonlocal_goto; -/* Nonzero if this function has a computed goto. - - It is computed during find_basic_blocks or during stupid life - analysis. */ - -int current_function_has_computed_jump; - /* Nonzero if function being compiled contains nested functions. */ int current_function_contains_functions; |