brintos

brintos / llvm-project-archived public Read only

0
0
Text · 171 B · 96a4b1b Raw
10 lines · plain
1; RUN: opt < %s -passes=instcombine -S | not grep "sub i32 0"2; PR23303 4define i32 @foo(i32 %a) nounwind {5entry:6  %A = sub i32 5, %a7  %B = and i32 %A, 28  ret i32 %B9}10