aboutsummaryrefslogtreecommitdiff
path: root/gcc/jump.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@cygnus.com>2000-01-14 20:51:04 +0000
committerNick Clifton <nickc@gcc.gnu.org>2000-01-14 20:51:04 +0000
commit06be917325903b12e7d679c65c9213b7880f3f9f (patch)
tree5ab565af0b5e42f047abbefe081697352492687d /gcc/jump.c
parent711d877c9e4f9b3250bc50e54c672b40840d574a (diff)
downloadgcc-06be917325903b12e7d679c65c9213b7880f3f9f.zip
gcc-06be917325903b12e7d679c65c9213b7880f3f9f.tar.gz
gcc-06be917325903b12e7d679c65c9213b7880f3f9f.tar.bz2
If RTL checking is enabled, make sure that emit_insn is not used to emit a
jump insn. From-SVN: r31420
Diffstat (limited to 'gcc/jump.c')
-rw-r--r--gcc/jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 1e93771..2edd923 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -3757,7 +3757,7 @@ returnjump_p_1 (loc, data)
void *data ATTRIBUTE_UNUSED;
{
rtx x = *loc;
- return GET_CODE (x) == RETURN;
+ return x && GET_CODE (x) == RETURN;
}
int