Commit 68f3f6f1 by H.J. Lu

cfgcleanup.c (thread_jump): Fix 2 typos.

2002-01-06  H.J. Lu <hjl@gnu.org>

	* cfgcleanup.c (thread_jump): Fix 2 typos.

From-SVN: r48592
parent 480f7f3a
2002-02-06 Aldy Hernandez <aldyh@redhat.com>
2002-01-06 H.J. Lu <hjl@gnu.org>
* cfgcleanup.c (thread_jump): Fix 2 typos.
2002-01-06 Aldy Hernandez <aldyh@redhat.com>
* config.gcc: Add support for --enable-altivec.
......
......@@ -268,13 +268,13 @@ thread_jump (mode, e, b)
set1 = pc_set (e->src->end);
set2 = pc_set (b->end);
if (((e->flags & EDGE_FALLTHRU) != 0)
!= (XEXP (SET_SRC (set1), 0) == pc_rtx))
!= (XEXP (SET_SRC (set1), 1) == pc_rtx))
reverse1 = true;
cond1 = XEXP (SET_SRC (set1), 0);
cond2 = XEXP (SET_SRC (set2), 0);
if (reverse1)
code1 = reversed_comparison_code (cond1, b->end);
code1 = reversed_comparison_code (cond1, e->src->end);
else
code1 = GET_CODE (cond1);
......
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