aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2005-01-20 20:33:33 +0000
committerPaul Brook <paul@codesourcery.com>2005-01-20 20:33:33 +0000
commit3fe707bfa66f003d2714efda7e2a1e650e23686b (patch)
tree5c0cae095e647fb47fbd5ecb4ead8b24f59d9c49
parent528aff202d69739ecd8859318aed87914318e2cf (diff)
* config/arm/arm.md (insv): Use gen_int_mode.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/csl-arm-2004-q3-branch@93982 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog.csl-arm4
-rw-r--r--gcc/config/arm/arm.md2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog.csl-arm b/gcc/ChangeLog.csl-arm
index 04e656ee2f1..32cedc1b0f6 100644
--- a/gcc/ChangeLog.csl-arm
+++ b/gcc/ChangeLog.csl-arm
@@ -1,3 +1,7 @@
+2004-01-20 Paul Brook <paul@codesourcery.com>
+
+ * config/arm/arm.md (insv): Use gen_int_mode.
+
2004-01-05 Julian Brown <julian@codesourcery.com>
* config/arm/arm.c (arm_return_in_memory): Treat complex types
diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md
index 6551a6f6ed7..f372c8f0f9d 100644
--- a/gcc/config/arm/arm.md
+++ b/gcc/config/arm/arm.md
@@ -1793,7 +1793,7 @@
emit_insn (gen_andsi3 (op1, operands[0], GEN_INT (~mask2)));
emit_insn (gen_iorsi3 (subtarget, op1,
- GEN_INT (op3_value << start_bit)));
+ gen_int_mode (op3_value << start_bit, SImode)));
}
else if (start_bit == 0
&& !(const_ok_for_arm (mask)