Commit 74ccf2c2 by John F. Carr Committed by David S. Miller

For movdi_v8plus pattern, output stx on alternative 1 and fzero on alternative 8.

For movdi_v8plus pattern, output stx on alternative 1 and
fzero on alternative 8.  Fix from John Carr (jfc@mit.edu)

From-SVN: r17834
parent ed22c95e
1998-02-10 John F Carr <jfc@mit.edu>
* config/sparc/sparc.md (movdi_v8plus): Output stx on alternative
1, fzero on alternative 8.
Tue Feb 10 09:02:19 1998 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Tue Feb 10 09:02:19 1998 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* rs6000.c (setup_incoming_varargs): Always set rs6000_sysv_varargs_p. * rs6000.c (setup_incoming_varargs): Always set rs6000_sysv_varargs_p.
......
...@@ -2153,9 +2153,9 @@ ...@@ -2153,9 +2153,9 @@
|| operands[1] == const0_rtx)" || operands[1] == const0_rtx)"
"* "*
{ {
if (which_alternative == 0) if (which_alternative == 1)
return \"stx %%g0,%0\"; return \"stx %%g0,%0\";
if (which_alternative == 7) if (which_alternative == 8)
return \"fzero %0\"; return \"fzero %0\";
if (FP_REG_P (operands[0]) || FP_REG_P (operands[1])) if (FP_REG_P (operands[0]) || FP_REG_P (operands[1]))
return output_fp_move_double (operands); return output_fp_move_double (operands);
......
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