summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-05-15 21:31:36 +0000
committerChris Lattner <sabre@nondot.org>2005-05-15 21:31:36 +0000
commit847f580c7c5c17caed4bce181c6ff427fec9849d (patch)
tree6c8c771ea1f57b02a324e6bb5de187814c7fde63
parent74305a6233695f33ec96da395515ae786c08db6a (diff)
downloadllvm-847f580c7c5c17caed4bce181c6ff427fec9849d.tar.gz
This does not belong
llvm-svn: 22071
-rw-r--r--llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll b/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll
index 4981d13b6df7..4031290c20c5 100644
--- a/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll
+++ b/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll
@@ -4,7 +4,6 @@
declare int %ffs(int)
declare int %ffsl(int)
declare int %ffsll(long)
-declare int %__builtin_ffs(int)
%non_const = external global int
@@ -14,12 +13,11 @@ int %main () {
%arg = load int* %non_const
%val0 = call int %ffs(int %arg)
%val1 = call int %ffs(int 1)
- %val2 = call int %__builtin_ffs(int 2048)
%val3 = call int %ffsl(int 65536)
%val4 = call int %ffsll(long 1024)
%val5 = call int %ffsll(long 17179869184)
%val6 = call int %ffsll(long 1152921504606846976)
- %rslt1 = add int %val1, %val2
+ %rslt1 = add int %val1, 0
%rslt2 = add int %val3, %val4
%rslt3 = add int %val5, %val6
%rslt4 = add int %rslt1, %rslt2