diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-07-09 17:36:57 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-07-09 17:36:57 -0600 |
commit | 1400469c009761aaf9e87a762945d967768dd851 (patch) | |
tree | 7dac4e4fb5325a34dfeb9e09643d2e48a65ed59a | |
parent | c21953c3b9dc4cb4cb095fa663e75077575b666d (diff) | |
download | gcc-1400469c009761aaf9e87a762945d967768dd851.zip gcc-1400469c009761aaf9e87a762945d967768dd851.tar.gz gcc-1400469c009761aaf9e87a762945d967768dd851.tar.bz2 |
Fix typos in last change.
From-SVN: r4896
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 2841ead..9bbc3e2 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3576,7 +3576,7 @@ output_movb (operands, insn, which_alternative, reverse_comparison) return "copy %1,%0"; else if (which_alternative == 1) { - output_asm_insn ("fstws %1,-16(0,%%r30)",operands); + output_asm_insn ("stw %1,-16(0,%%r30)",operands); return "fldws -16(0,%%r30),%0"; } else @@ -3631,7 +3631,7 @@ output_movb (operands, insn, which_alternative, reverse_comparison) /* Move loop counter from FP register to MEM then into a GR, increment the GR, store the GR into MEM, and finally reload the FP register from MEM from within the branch's delay slot. */ - output_asm_insn ("fstws %1,-16(0,%%r30)",operands); + output_asm_insn ("stw %1,-16(0,%%r30)",operands); if (get_attr_length (insn) == 12) return "comb,%S2 0,%1,%3\n\tfldws -16(0,%%r30),%0"; else |