aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-lsl.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Thumb2/thumb2-lsl.ll')
-rw-r--r--test/CodeGen/Thumb2/thumb2-lsl.ll8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-lsl.ll b/test/CodeGen/Thumb2/thumb2-lsl.ll
deleted file mode 100644
index 05441c856472..000000000000
--- a/test/CodeGen/Thumb2/thumb2-lsl.ll
+++ /dev/null
@@ -1,8 +0,0 @@
-; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
-
-define i32 @f1(i32 %a) {
-; CHECK-LABEL: f1:
-; CHECK: lsls r0, r0, #5
- %tmp = shl i32 %a, 5
- ret i32 %tmp
-}