File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
llvm/test/Regression/Transforms/SimplifyLibCalls Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 4
4
declare int %ffs (int)
5
5
declare int %ffsl (int)
6
6
declare int %ffsll (long)
7
- declare int %__builtin_ffs (int)
8
7
9
8
%non_const = external global int
10
9
@@ -14,12 +13,11 @@ int %main () {
14
13
%arg = load int* %non_const
15
14
%val0 = call int %ffs (int %arg )
16
15
%val1 = call int %ffs (int 1 )
17
- %val2 = call int %__builtin_ffs (int 2048 )
18
16
%val3 = call int %ffsl (int 65536 )
19
17
%val4 = call int %ffsll (long 1024 )
20
18
%val5 = call int %ffsll (long 17179869184 )
21
19
%val6 = call int %ffsll (long 1152921504606846976 )
22
- %rslt1 = add int %val1 , %val2
20
+ %rslt1 = add int %val1 , 0
23
21
%rslt2 = add int %val3 , %val4
24
22
%rslt3 = add int %val5 , %val6
25
23
%rslt4 = add int %rslt1 , %rslt2
You can’t perform that action at this time.
0 commit comments