blob: 4f36c96b364d95c8d9583a272afcca14f5acd9d2 [file] [log] [blame]
Chris Lattner50e86822003-06-28 23:23:34 +00001; RUN: as < %s | opt -reassociate -instcombine -constprop -die | dis | not grep 5
Chris Lattnerb064baf2002-05-15 21:56:51 +00002
Chris Lattner50e86822003-06-28 23:23:34 +00003int %test(int %A, int %B) {
Chris Lattnerb064baf2002-05-15 21:56:51 +00004 %W = add int %B, -5
5 %Y = add int %A, 5
6 %Z = add int %W, %Y
7 ret int %Z
8}