blob: c7a3687642c2313d08968fa7cb470e18a8a47944 [file] [log] [blame]
Chris Lattner557a1432002-05-08 21:34:22 +00001; With reassociation, constant folding can eliminate the +/- 30 constants.
2;
Misha Brukmane78760e2003-09-16 15:29:54 +00003; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 30
Chris Lattner557a1432002-05-08 21:34:22 +00004
5int "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}