summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/movt.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-10-21 08:15:52 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-10-21 08:15:52 +0000
commit2095659a8551fb222d145bc8dfa6cf5d15048e42 (patch)
tree8788a1c1389492e0a8c74e227d0e48e53e7ff685 /test/CodeGen/ARM/movt.ll
parent5affca0763836e15ca15e78ed3a0fd56ef6b2e92 (diff)
downloadllvm-2095659a8551fb222d145bc8dfa6cf5d15048e42.tar.gz
llvm-2095659a8551fb222d145bc8dfa6cf5d15048e42.tar.bz2
llvm-2095659a8551fb222d145bc8dfa6cf5d15048e42.tar.xz
Match more patterns to movt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/movt.ll')
-rw-r--r--test/CodeGen/ARM/movt.ll19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/movt.ll b/test/CodeGen/ARM/movt.ll
new file mode 100644
index 0000000000..e82aca0e9c
--- /dev/null
+++ b/test/CodeGen/ARM/movt.ll
@@ -0,0 +1,19 @@
+; RUN: llc < %s -march=arm -mattr=+thumb2 | FileCheck %s
+; rdar://7317664
+
+define i32 @t(i32 %X) nounwind {
+; CHECK: t:
+; CHECK: movt r0, #65535
+entry:
+ %0 = or i32 %X, -65536
+ ret i32 %0
+}
+
+define i32 @t2(i32 %X) nounwind {
+; CHECK: t2:
+; CHECK: movt r0, #65534
+entry:
+ %0 = or i32 %X, -131072
+ %1 = and i32 %0, -65537
+ ret i32 %1
+}