summaryrefslogtreecommitdiff
path: root/gcc/config/alpha/alpha.md
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2007-09-23 14:53:06 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2007-09-23 14:53:06 +0000
commitaa881249416e019cc0f3cc01a821935db5d6b27d (patch)
tree46f87771edba5d41948fbab97b90a07bcbcb1b99 /gcc/config/alpha/alpha.md
parent11dd7ac19faf5a5526eb53f8b75b98e23b3b2be2 (diff)
downloadgcc-aa881249416e019cc0f3cc01a821935db5d6b27d.tar.gz
* config/alpha/alpha.md (movti): Use operand_subword for the split.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128690 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha/alpha.md')
-rw-r--r--gcc/config/alpha/alpha.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md
index f4f3eb3a8df..ca862bbbc67 100644
--- a/gcc/config/alpha/alpha.md
+++ b/gcc/config/alpha/alpha.md
@@ -5784,8 +5784,8 @@
else
target = operands[0];
- emit_insn (gen_movdi (gen_rtx_SUBREG (DImode, target, 0), out[0]));
- emit_insn (gen_movdi (gen_rtx_SUBREG (DImode, target, 8), out[1]));
+ emit_insn (gen_movdi (operand_subword (target, 0, 0, TImode), out[0]));
+ emit_insn (gen_movdi (operand_subword (target, 1, 0, TImode), out[1]));
if (target != operands[0])
emit_insn (gen_rtx_SET (VOIDmode, operands[0], target));