Commit b771b6b4 by Richard Henderson Committed by Richard Henderson

Fix -ffast-math typo in alpha_emit_conditional_branch.

From-SVN: r19822
parent 2a831d01
Sun May 17 19:31:05 1998 Richard Henderson <rth@cygnus.com>
* alpha.c (alpha_emit_conditional_branch): Clear cmp_code after
using it with swap_condition, not before.
Sun May 17 13:44:32 1998 Jim Wilson <wilson@cygnus.com>
* alias.c (mode_alias_check): Delete.
......
......@@ -1280,7 +1280,8 @@ alpha_emit_conditional_branch (code)
{
/* Undo the swap we probably did just above. */
tem = op0, op0 = op1, op1 = tem;
cmp_code = NIL, branch_code = swap_condition (cmp_code);
branch_code = swap_condition (cmp_code);
cmp_code = NIL;
}
}
else
......
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