summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/zext-shl.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/zext-shl.ll')
-rw-r--r--test/CodeGen/X86/zext-shl.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/X86/zext-shl.ll b/test/CodeGen/X86/zext-shl.ll
index bc3198a9d1..928848e3f7 100644
--- a/test/CodeGen/X86/zext-shl.ll
+++ b/test/CodeGen/X86/zext-shl.ll
@@ -23,16 +23,3 @@ entry:
%2 = zext i16 %1 to i32
ret i32 %2
}
-
-define i32 @t3(i8 zeroext %x, i8 zeroext %y) nounwind readnone ssp {
-entry:
-; CHECK: t3:
-; CHECK: shll
-; CHECK-NOT: movzwl
-; CHECK: ret
- %0 = zext i8 %x to i16
- %1 = zext i8 %y to i16
- %2 = shl i16 %0, %1
- %3 = zext i16 %2 to i32
- ret i32 %3
-}