diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e165e9e..33bf8b2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-10-17 Richard Henderson <rth@redhat.com> + + * config/alpha/alpha.c (direct_call_operand): Don't fall off end. + 2001-10-16 Matt Kraai <kraai@alumni.carnegiemellon.edu> * c-tree.texi: Eliminate duplicated word. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 48e157e..b29112c 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -868,6 +868,8 @@ direct_call_operand (op, mode) if (! TARGET_PROFILING_NEEDS_GP && ! profile_flag && ! profile_block_flag) return 0; + + return 1; } /* Return true if OP is a LABEL_REF, or SYMBOL_REF or CONST referencing |