aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/sub.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/sub.ll')
-rw-r--r--test/CodeGen/ARM/sub.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/sub.ll b/test/CodeGen/ARM/sub.ll
index 06ea703fc74b..474043afc11d 100644
--- a/test/CodeGen/ARM/sub.ll
+++ b/test/CodeGen/ARM/sub.ll
@@ -36,3 +36,15 @@ entry:
%sel = select i1 %cmp, i32 1, i32 %sub
ret i32 %sel
}
+
+; rdar://11726136
+define i32 @f5(i32 %x) {
+entry:
+; CHECK: f5
+; CHECK: movw r1, #65535
+; CHECK-NOT: movt
+; CHECK-NOT: add
+; CHECK: sub r0, r0, r1
+ %sub = add i32 %x, -65535
+ ret i32 %sub
+}