diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-22 01:00:30 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-22 01:00:30 +0000 |
commit | 46adebf3a7aa75d090c5fb89bd06fcc7a6f3ea57 (patch) | |
tree | 173b24140fa5395d72fb7154e8e032b5f52d7086 | |
parent | f03e7c4d6596385e064498846b5415c9968b99c4 (diff) | |
download | gcc-46adebf3a7aa75d090c5fb89bd06fcc7a6f3ea57.tar.gz |
h
* rs6000.md (movdf_hardfloat32): Use %X instead of always emitting
'x' when handling non-offsettable addresses
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27697 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index a31762a3a11..a95b3eeea3c 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -6353,15 +6353,15 @@ operands[1], 0)) { output_asm_insn (\"{cal|la} %0,4(%0)\", &addreg); - output_asm_insn (\"{lx|lwzx} %L0,%1\", operands); + output_asm_insn (\"{l%X1|lwz%X1} %L0,%1\", operands); output_asm_insn (\"{cal|la} %0,-4(%0)\", &addreg); - return \"{lx|lwzx} %0,%1\"; + return \"{l%X1|lwz%X1} %0,%1\"; } else { - output_asm_insn (\"{lx|lwzx} %0,%1\", operands); + output_asm_insn (\"{l%X1|lwz%X1} %0,%1\", operands); output_asm_insn (\"{cal|la} %0,4(%0)\", &addreg); - output_asm_insn (\"{lx|lwzx} %L0,%1\", operands); + output_asm_insn (\"{l%X1|lwz%X1} %L0,%1\", operands); output_asm_insn (\"{cal|la} %0,-4(%0)\", &addreg); return \"\"; } @@ -6378,9 +6378,9 @@ abort (); addreg = find_addr_reg (XEXP (operands[0], 0)); - output_asm_insn (\"{stx|stwx} %1,%0\", operands); + output_asm_insn (\"{st%X0|stw%X0} %1,%0\", operands); output_asm_insn (\"{cal|la} %0,4(%0)\", &addreg); - output_asm_insn (\"{stx|stwx} %L1,%0\", operands); + output_asm_insn (\"{st%X0|stw%X0} %L1,%0\", operands); output_asm_insn (\"{cal|la} %0,-4(%0)\", &addreg); return \"\"; } |