Commit a5cf80f0 by Jan Hubicka Committed by Jan Hubicka

re PR target/9068 ([x86] comisd & comiss constraints are incorrect)

	PR target/9068
	* i386.c (output_fp_compare): Fix typo.

From-SVN: r61199
parent 15d2cb19
Sat Jan 11 11:02:58 CET 2003 Jan Hubicka <jh@suse.cz>
PR target/9068
* i386.c (output_fp_compare): Fix typo.
2003-01-10 David Edelsohn <edelsohn@gnu.org> 2003-01-10 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (common_mode_defined): Mark for PCH. * config/rs6000/rs6000.c (common_mode_defined): Mark for PCH.
......
...@@ -7775,12 +7775,12 @@ output_fp_compare (insn, operands, eflags_p, unordered_p) ...@@ -7775,12 +7775,12 @@ output_fp_compare (insn, operands, eflags_p, unordered_p)
if (unordered_p) if (unordered_p)
return "ucomiss\t{%1, %0|%0, %1}"; return "ucomiss\t{%1, %0|%0, %1}";
else else
return "comiss\t{%1, %0|%0, %y}"; return "comiss\t{%1, %0|%0, %1}";
else else
if (unordered_p) if (unordered_p)
return "ucomisd\t{%1, %0|%0, %1}"; return "ucomisd\t{%1, %0|%0, %1}";
else else
return "comisd\t{%1, %0|%0, %y}"; return "comisd\t{%1, %0|%0, %1}";
} }
if (! STACK_TOP_P (cmp_op0)) if (! STACK_TOP_P (cmp_op0))
...@@ -9612,7 +9612,7 @@ ix86_expand_int_movcc (operands) ...@@ -9612,7 +9612,7 @@ ix86_expand_int_movcc (operands)
if (!rtx_equal_p (tmp, out)) if (!rtx_equal_p (tmp, out))
{ {
if (nops == 1) if (nops == 1)
out = force_operand (tmp, out); out = force_operand (tmp, copy_rtx (out));
else else
emit_insn (gen_rtx_SET (VOIDmode, copy_rtx (out), copy_rtx (tmp))); emit_insn (gen_rtx_SET (VOIDmode, copy_rtx (out), copy_rtx (tmp)));
} }
......
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