Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
[oota-llvm.git] / test / Transforms / Reassociate / subtest.ll
1 ; With sub reassociation, constant folding can eliminate the 12 and -12 constants.
2 ;
3 ; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 12
4
5 int "test"(int %A, int %B) {
6         %X = add int -12, %A
7         %Y = sub int %X, %B
8         %Z = add int %Y, 12
9         ret int %Z
10 }