We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847f580 commit f0b186eCopy full SHA for f0b186e
llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll
@@ -13,11 +13,12 @@ int %main () {
13
%arg = load int* %non_const
14
%val0 = call int %ffs(int %arg)
15
%val1 = call int %ffs(int 1)
16
+ %val2 = call int %ffs(int 2048)
17
%val3 = call int %ffsl(int 65536)
18
%val4 = call int %ffsll(long 1024)
19
%val5 = call int %ffsll(long 17179869184)
20
%val6 = call int %ffsll(long 1152921504606846976)
- %rslt1 = add int %val1, 0
21
+ %rslt1 = add int %val1, %val2
22
%rslt2 = add int %val3, %val4
23
%rslt3 = add int %val5, %val6
24
%rslt4 = add int %rslt1, %rslt2
0 commit comments