Remove explicit control flow through the use of the 'not' script
[oota-llvm.git] / test / Transforms / Reassociate / basictest2.ll
1 ; With reassociation, constant folding can eliminate the +/- 30 constants.
2 ;
3 ; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep 30
4
5 int "test"(int %reg109, int %reg1111) {
6         %reg115 = add int %reg109, -30           ; <int> [#uses=1]
7         %reg116 = add int %reg115, %reg1111             ; <int> [#uses=1]
8         %reg117 = add int %reg116, 30           ; <int> [#uses=1]
9         ret int %reg117
10 }