[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / zext-shl.ll
blob1b9c813bc1e60b7f61716135954030721ea80627
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-unknown-unknown | FileCheck %s
4 define i32 @t1(i8 zeroext %x) nounwind {
5 ; CHECK-LABEL: t1:
6 ; CHECK:       # %bb.0:
7 ; CHECK-NEXT:    movzbl {{[0-9]+}}(%esp), %eax
8 ; CHECK-NEXT:    shll $5, %eax
9 ; CHECK-NEXT:    retl
10   %t0 = zext i8 %x to i16
11   %t1 = shl i16 %t0, 5
12   %t2 = zext i16 %t1 to i32
13   ret i32 %t2
16 define i32 @t2(i8 zeroext %x) nounwind {
17 ; CHECK-LABEL: t2:
18 ; CHECK:       # %bb.0:
19 ; CHECK-NEXT:    movzbl {{[0-9]+}}(%esp), %eax
20 ; CHECK-NEXT:    shrl $3, %eax
21 ; CHECK-NEXT:    retl
22   %t0 = zext i8 %x to i16
23   %t1 = lshr i16 %t0, 3
24   %t2 = zext i16 %t1 to i32
25   ret i32 %t2