diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-17 21:57:30 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-17 21:57:30 +0000 |
commit | b7f013ae0e7e8c7cf64f6358ace2a42ce1b8c3b0 (patch) | |
tree | 7e993afeb25da65b711f038dbc560d177094a8f1 /gcc/jump.c | |
parent | 345f9e8cfaba0e33eb056b4fd6e3c99b52199daa (diff) | |
download | gcc-b7f013ae0e7e8c7cf64f6358ace2a42ce1b8c3b0.tar.gz |
* jump.c (condjump_p): Remove unreachable code.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90820 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index ed6ef1e5871..0378cf7c55e 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -766,8 +766,6 @@ condjump_p (rtx insn) || (GET_CODE (XEXP (x, 1)) == PC && (GET_CODE (XEXP (x, 2)) == LABEL_REF || GET_CODE (XEXP (x, 2)) == RETURN)))); - - return 0; } /* Return nonzero if INSN is a (possibly) conditional jump inside a |