diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-05-15 21:35:26 +0000 | 
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-05-15 21:35:26 +0000 | 
| commit | f0b186e49e414572844ed148b10e7c36c3dbd70a (patch) | |
| tree | 8adeb3de404718b0cdc3a5543720c4ab900664c7 /llvm | |
| parent | 847f580c7c5c17caed4bce181c6ff427fec9849d (diff) | |
| download | bcm5719-llvm-f0b186e49e414572844ed148b10e7c36c3dbd70a.tar.gz bcm5719-llvm-f0b186e49e414572844ed148b10e7c36c3dbd70a.zip | |
Don't eliminate a test case, just the form of the test case, from the
previous revision.
llvm-svn: 22072
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll b/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll index 4031290c20c..ccaaf3d350d 100644 --- a/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll +++ b/llvm/test/Regression/Transforms/SimplifyLibCalls/FFS.ll @@ -13,11 +13,12 @@ int %main () {    %arg  = load int* %non_const    %val0 = call int %ffs(int %arg)    %val1 = call int %ffs(int 1) +  %val2 = call int %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, 0 +  %rslt1 = add int %val1, %val2    %rslt2 = add int %val3, %val4    %rslt3 = add int %val5, %val6    %rslt4 = add int %rslt1, %rslt2 | 

