Skip to content

Commit 847f580

Browse files
committed
This does not belong
llvm-svn: 22071
1 parent 74305a6 commit 847f580

File tree

1 file changed

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

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
declare int %ffs(int)
55
declare int %ffsl(int)
66
declare int %ffsll(long)
7-
declare int %__builtin_ffs(int)
87

98
%non_const = external global int
109

@@ -14,12 +13,11 @@ int %main () {
1413
%arg = load int* %non_const
1514
%val0 = call int %ffs(int %arg)
1615
%val1 = call int %ffs(int 1)
17-
%val2 = call int %__builtin_ffs(int 2048)
1816
%val3 = call int %ffsl(int 65536)
1917
%val4 = call int %ffsll(long 1024)
2018
%val5 = call int %ffsll(long 17179869184)
2119
%val6 = call int %ffsll(long 1152921504606846976)
22-
%rslt1 = add int %val1, %val2
20+
%rslt1 = add int %val1, 0
2321
%rslt2 = add int %val3, %val4
2422
%rslt3 = add int %val5, %val6
2523
%rslt4 = add int %rslt1, %rslt2

0 commit comments

Comments
 (0)