brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 2ace788 Raw
9 lines · plain
1; RUN: opt < %s -passes=instcombine -S | grep sub2; PR25533 4define double @test(double %X) nounwind {5	; fsub of self can't be optimized away.6	%Y = fsub double %X, %X7	ret double %Y8}9