brintos

brintos / llvm-project-archived public Read only

0
0
Text · 175 B · 4a5833a Raw
10 lines · plain
1; RUN: opt < %s -passes=instcombine -S | grep "ret i1 false"2; PR22763 4define i1 @f(i32 %x) {5  %A = or i32 %x, 16  %B = srem i32 %A, 17  %C = icmp ne i32 %B, 08  ret i1 %C9}10