diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-03-29 23:23:59 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-03-29 23:23:59 +0000 |
commit | 76fdc4b885794df96f85d370f64a22f2b5e6b24a (patch) | |
tree | 98361b617f519c9f0341998fed91307874ea003c /llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll | |
parent | d8af9a5ee13e4a4b14e61bc608e6b19a095b203c (diff) | |
download | bcm5719-llvm-76fdc4b885794df96f85d370f64a22f2b5e6b24a.tar.gz bcm5719-llvm-76fdc4b885794df96f85d370f64a22f2b5e6b24a.zip |
Revert r153694. It was causing failures in the buildbots.
llvm-svn: 153701
Diffstat (limited to 'llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll b/llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll deleted file mode 100644 index 6b46639c51f..00000000000 --- a/llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll +++ /dev/null @@ -1,12 +0,0 @@ -; RUN: %lli -use-mcjit %s > /dev/null - -; This tests to make sure that we can evaluate weird constant expressions - -@A = global i32 5 ; <i32*> [#uses=1] -@B = global i32 6 ; <i32*> [#uses=1] - -define i32 @main() { - %A = or i1 false, icmp slt (i32* @A, i32* @B) ; <i1> [#uses=0] - ret i32 0 -} - |