diff options
author | H.J. Lu <hjl@gnu.ai.mit.edu> | 1997-09-23 06:40:37 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-23 00:40:37 -0600 |
commit | 7019d00e09fa3c99f6985687f042e49bf3562bb3 (patch) | |
tree | 8b160f8f7617f108d2a34f06fbea3226e848bcca /gcc/loop.c | |
parent | 4d935b402faa4f788d2a8208809a13663f66fa0f (diff) | |
download | gcc-7019d00e09fa3c99f6985687f042e49bf3562bb3.zip gcc-7019d00e09fa3c99f6985687f042e49bf3562bb3.tar.gz gcc-7019d00e09fa3c99f6985687f042e49bf3562bb3.tar.bz2 |
loop.c (indirect_jump_in_function_p): Return 0 by default.
* loop.c (indirect_jump_in_function_p): Return 0
by default.
From-SVN: r15666
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7582,5 +7582,6 @@ indirect_jump_in_function_p (start) for (insn = start; insn; insn = NEXT_INSN (insn)) if (computed_jump_p (insn)) return 1; + + return 0; } -/* END CYGNUS LOCAL haifa */ |