Commit 4deaa2f8 by Jan Hubicka Committed by Jan Hubicka

* cfgcleanup.c (thread_jump): Fix handling of reversed branches.

From-SVN: r48554
parent 9f16e871
Sat Jan 5 02:20:22 CET 2002 Jan Hubicka <jh@suse.cz>
* cfgcleanup.c (thread_jump): Fix handling of reversed branches.
Sat Jan 5 01:35:29 CET 2002 Jan Hubicka <jh@suse.cz>
* cfgcleanup.c: Include tm_p.h
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment