diff options
author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-17 06:16:56 +0000 |
---|---|---|
committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-17 06:16:56 +0000 |
commit | 0f51462db019a33a7a5dae473223aa89e4f8dd1c (patch) | |
tree | c11eac0c3ce97cc636bd6b3e851d811a132f5c2c /gcc/function.c | |
parent | 0d3f18011270846babee9cf6ffb5ae3bb2b0a480 (diff) | |
download | gcc-0f51462db019a33a7a5dae473223aa89e4f8dd1c.tar.gz |
* function.c (thread_prologue_and_epilogue_insns): Set delete_unused
argument to 0 for redirect_jump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64468 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 26fc9ecca76..4df1800846d 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -7601,7 +7601,7 @@ thread_prologue_and_epilogue_insns (f) that with a conditional return instruction. */ else if (condjump_p (jump)) { - if (! redirect_jump (jump, 0, 1)) + if (! redirect_jump (jump, 0, 0)) continue; /* If this block has only one successor, it both jumps |