aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2007-09-23 14:53:06 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2007-09-23 14:53:06 +0000
commit4637cb92287f1097aeac7f881e9b6149839b18e9 (patch)
tree46f87771edba5d41948fbab97b90a07bcbcb1b99 /gcc
parent8eb75619495a2d9049975bd8e56fcb3a184fabd1 (diff)
downloadgcc-4637cb92287f1097aeac7f881e9b6149839b18e9.zip
gcc-4637cb92287f1097aeac7f881e9b6149839b18e9.tar.gz
gcc-4637cb92287f1097aeac7f881e9b6149839b18e9.tar.bz2
alpha.md (movti): Use operand_subword for the split.
* config/alpha/alpha.md (movti): Use operand_subword for the split. From-SVN: r128690
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/alpha/alpha.md4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1e3e595..ab25de6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-23 Eric Botcazou <ebotcazou@adacore.com>
+
+ * config/alpha/alpha.md (movti): Use operand_subword for the split.
+
2007-09-23 Ayal Zaks <zaks@il.ibm.com>
Revital Eres <eres@il.ibm.com>
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md
index f4f3eb3..ca862bb 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));