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/simpletest.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/simpletest.ll')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/simpletest.ll | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/simpletest.ll b/llvm/test/ExecutionEngine/MCJIT/simpletest.ll deleted file mode 100644 index 4562aa6012e..00000000000 --- a/llvm/test/ExecutionEngine/MCJIT/simpletest.ll +++ /dev/null @@ -1,11 +0,0 @@ -; RUN: %lli -use-mcjit %s > /dev/null - -define i32 @bar() { - ret i32 0 -} - -define i32 @main() { - %r = call i32 @bar( ) ; <i32> [#uses=1] - ret i32 %r -} - |