Fix -ffast-math typo in alpha_emit_conditional_branch.

From-SVN: r19822
This commit is contained in:
Richard Henderson 1998-05-17 12:32:45 -07:00 committed by Richard Henderson
parent 2a831d01a6
commit b771b6b4f9
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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