summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2006-10-02-BoolRetCrash.ll')
-rw-r--r--test/CodeGen/X86/2006-10-02-BoolRetCrash.ll7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll b/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll
index eb4d2919d1..cc988f2661 100644
--- a/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll
+++ b/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll
@@ -1,6 +1,7 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc
+; RUN: llvm-as < %s | llc
; PR933
-fastcc bool %test() {
- ret bool true
+define fastcc i1 @test() {
+ ret i1 true
}
+