diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-03-10 07:21:50 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-03-10 07:21:50 +0000 |
commit | ceca194c4355224723b309a3a27c5e5bc19cb6fc (patch) | |
tree | d976e8cf9d933c32868d72a94d1ec2d9d7205735 /test/ExecutionEngine/test-constantexpr.ll | |
parent | f79e60649a5edea03bdccf8521d77c15cbb33af4 (diff) | |
download | external_llvm-ceca194c4355224723b309a3a27c5e5bc19cb6fc.tar.gz external_llvm-ceca194c4355224723b309a3a27c5e5bc19cb6fc.tar.bz2 external_llvm-ceca194c4355224723b309a3a27c5e5bc19cb6fc.zip |
Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48137 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-constantexpr.ll')
-rw-r--r-- | test/ExecutionEngine/test-constantexpr.ll | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/test/ExecutionEngine/test-constantexpr.ll b/test/ExecutionEngine/test-constantexpr.ll index 1ee7e148e9..2bf1949ead 100644 --- a/test/ExecutionEngine/test-constantexpr.ll +++ b/test/ExecutionEngine/test-constantexpr.ll @@ -1,14 +1,13 @@ -; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc +; RUN: llvm-as < %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; This tests to make sure that we can evaluate weird constant expressions -%A = global int 5 -%B = global int 6 -implementation +@A = global i32 5 ; <i32*> [#uses=1] +@B = global i32 6 ; <i32*> [#uses=1] -int %main() { - %A = or bool false, setlt (int* %A, int* %B) ; Which is lower in memory? - ret int 0 +define i32 @main() { + %A = or i1 false, icmp slt (i32* @A, i32* @B) ; <i1> [#uses=0] + ret i32 0 } |