Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2009-03-24-InfLoop.ll
blob7766a0f60641b586886ce0f4fd00d2c692997df0
1 ; PR3874
2 ; RUN: opt < %s -passes=instcombine | llvm-dis
3   define i1 @test(i32 %x) {
4     %A = lshr i32 3968, %x
5     %B = and i32 %A, 1
6     %C = icmp eq i32 %B, 0
7     ret i1 %C
8   }