Skip to content

Commit f0b186e

Browse files
author
Reid Spencer
committed
Don't eliminate a test case, just the form of the test case, from the
previous revision. llvm-svn: 22072
1 parent 847f580 commit f0b186e

File tree

1 file changed

+2
-1
lines changed
  • llvm/test/Regression/Transforms/SimplifyLibCalls

1 file changed

+2
-1
lines changed

llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ int %main () {
1313
%arg = load int* %non_const
1414
%val0 = call int %ffs(int %arg)
1515
%val1 = call int %ffs(int 1)
16+
%val2 = call int %ffs(int 2048)
1617
%val3 = call int %ffsl(int 65536)
1718
%val4 = call int %ffsll(long 1024)
1819
%val5 = call int %ffsll(long 17179869184)
1920
%val6 = call int %ffsll(long 1152921504606846976)
20-
%rslt1 = add int %val1, 0
21+
%rslt1 = add int %val1, %val2
2122
%rslt2 = add int %val3, %val4
2223
%rslt3 = add int %val5, %val6
2324
%rslt4 = add int %rslt1, %rslt2

0 commit comments

Comments
 (0)