Remove test. Execution tests are slow and generally not worth it.

llvm-svn: 86434
This commit is contained in:
Nick Lewycky 2009-11-08 02:23:15 +00:00
parent d90e0a113e
commit 1866ee143d
1 changed files with 0 additions and 19 deletions

View File

@ -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
}