diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-01 01:22:53 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-01 01:22:53 +0000 |
commit | 8155d6d8d98e877f630581a17bd083606d6f99d9 (patch) | |
tree | 66034808298a8c02e6c765ebe1755af61b4fbfd0 /test | |
parent | f5626a38a7e4cc5d2afb6c42104ce708162041e5 (diff) | |
download | external_llvm-8155d6d8d98e877f630581a17bd083606d6f99d9.zip external_llvm-8155d6d8d98e877f630581a17bd083606d6f99d9.tar.gz external_llvm-8155d6d8d98e877f630581a17bd083606d6f99d9.tar.bz2 |
Back out last revision now that llvm-upgrade can remove useless bitcasts.
This serves as a test of that feature.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/LICM/basictest.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LICM/basictest.ll b/test/Transforms/LICM/basictest.ll index f3311ea..6458f03 100644 --- a/test/Transforms/LICM/basictest.ll +++ b/test/Transforms/LICM/basictest.ll @@ -1,12 +1,12 @@ ; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis -void "testfunc"(int %i.s) { +void "testfunc"(int %i) { br label %Loop Loop: %j = phi uint [0, %0], [%Next, %Loop] - %i = cast int %i.s to uint + %i = cast int %i to uint %i2 = mul uint %i, 17 %Next = add uint %j, %i2 %cond = seteq uint %Next, 0 |