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-call-no-external-funcs.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-call-no-external-funcs.ll')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll b/llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll deleted file mode 100644 index 6f284055fd9..00000000000 --- a/llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll +++ /dev/null @@ -1,14 +0,0 @@ -; RUN: %lli -use-mcjit %s > /dev/null - -define i32 @_Z14func_exit_codev() nounwind uwtable { -entry: - ret i32 0 -} - -define i32 @main() nounwind uwtable { -entry: - %retval = alloca i32, align 4 - store i32 0, i32* %retval - %call = call i32 @_Z14func_exit_codev() - ret i32 %call -} |