blob: 7efa3cca81aefbcb730b5558645b391fcc088eef [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; With reassociation, constant folding can eliminate the +/- 30 constants.
2;
3; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 30
4
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}