aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll')
-rw-r--r--test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll b/test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll
new file mode 100644
index 000000000000..e761ffe72c13
--- /dev/null
+++ b/test/CodeGen/ARM/2012-09-18-ARMv4ISelBug.ll
@@ -0,0 +1,11 @@
+; RUN: llc < %s -march=arm -mcpu=arm7tdmi | FileCheck %s
+
+; movw is only legal for V6T2 and later.
+; rdar://12300648
+
+define i32 @t(i32 %x) {
+; CHECK: t:
+; CHECK-NOT: movw
+ %tmp = add i32 %x, -65535
+ ret i32 %tmp
+}