Remove test. Execution tests are slow and generally not worth it.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 8 Nov 2009 02:23:15 +0000 (02:23 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 8 Nov 2009 02:23:15 +0000 (02:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86434 91177308-0d34-0410-b5e6-96231b3b80d8

test/ExecutionEngine/interpreter-ext.ll [deleted file]

diff --git a/test/ExecutionEngine/interpreter-ext.ll b/test/ExecutionEngine/interpreter-ext.ll
deleted file mode 100644 (file)
index b31b94a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: llvm-as < %s | lli -force-interpreter
-; Extending a value due to zeroext/signext will leave it the wrong size
-; causing problems later, such as a crash if you try to extend it again.
-
-define void @zero(i8 zeroext %foo) {
-  zext i8 %foo to i32
-  ret void
-}
-
-define void @sign(i8 signext %foo) {
-  sext i8 %foo to i32
-  ret void
-}
-
-define i32 @main() {
-  call void @zero(i8 0)
-  call void @sign(i8 0)
-  ret i32 0
-}