Remove explicit control flow through the use of the 'not' script
[oota-llvm.git] / test / Transforms / Reassociate / basictest.ll
1 ; With reassociation, constant folding can eliminate the 12 and -12 constants.
2 ;
3 ; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep add
4
5 int %test(int %arg) {
6         %tmp1 = sub int -12, %arg
7         %tmp2 = add int %tmp1, 12
8         ret int %tmp2
9 }