]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/Transforms/InstCombine/srem-simplify-bug.ll
[canonicalize] Teach InstCombine to canonicalize loads which are only
[opencl/llvm.git] / test / Transforms / InstCombine / srem-simplify-bug.ll
1 ; RUN: opt < %s -instcombine -S | grep "ret i1 false"
2 ; PR2276
4 define i1 @f(i32 %x) {
5   %A = or i32 %x, 1
6   %B = srem i32 %A, 1
7   %C = icmp ne i32 %B, 0
8   ret i1 %C
9 }