diff options
author | Jan Hubicka <jh@suse.cz> | 2002-01-05 02:21:30 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-01-05 01:21:30 +0000 |
commit | 4deaa2f859cdd84e7350d3c4e467d05cb8f3fa12 (patch) | |
tree | ad72c1d576659b98cf0f19f607d13e164c9b1ae1 /gcc/cfgcleanup.c | |
parent | 9f16e871d3cde2e2b027c9b8e3a6f5045e8fb349 (diff) | |
download | gcc-4deaa2f859cdd84e7350d3c4e467d05cb8f3fa12.zip gcc-4deaa2f859cdd84e7350d3c4e467d05cb8f3fa12.tar.gz gcc-4deaa2f859cdd84e7350d3c4e467d05cb8f3fa12.tar.bz2 |
* cfgcleanup.c (thread_jump): Fix handling of reversed branches.
From-SVN: r48554
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 0a111a5..f4aec51 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -349,7 +349,7 @@ thread_jump (mode, e, b) BITMAP_XFREE (nonequal); cselib_finish (); if ((comparison_dominates_p (code1, code2) != 0) - != (XEXP (SET_SRC (set2), 0) == pc_rtx)) + != (XEXP (SET_SRC (set2), 1) == pc_rtx)) return BRANCH_EDGE (b); else return FALLTHRU_EDGE (b); |