[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / pr3216.ll
blob09ef4d251c84fdd2a7b78c285ed133c1aaf77c88
1 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s
3 @foo = global i8 127
5 define i32 @main() nounwind {
6 ; CHECK-LABEL: main:
7 ; CHECK-NOT: ret
8 ; CHECK: sar{{.}} $5
9 ; CHECK: ret
11    %tmp = load i8, ptr @foo
12    %bf.lo = lshr i8 %tmp, 5
13    %bf.lo.cleared = and i8 %bf.lo, 7
14    %1 = shl i8 %bf.lo.cleared, 5
15    %bf.val.sext = ashr i8 %1, 5
16    %conv = sext i8 %bf.val.sext to i32
17    ret i32 %conv