OSDN Git Service

testcase for PR933
authorChris Lattner <sabre@nondot.org>
Tue, 3 Oct 2006 17:17:54 +0000 (17:17 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 3 Oct 2006 17:17:54 +0000 (17:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30702 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/2006-10-02-BoolRetCrash.ll [new file with mode: 0644]

diff --git a/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll b/test/CodeGen/X86/2006-10-02-BoolRetCrash.ll
new file mode 100644 (file)
index 0000000..d7571d8
--- /dev/null
@@ -0,0 +1,7 @@
+; RUN: llvm-as < %s | llc &&
+; RUN: llvm-as < %s | llc -enable-x86-fastcc
+; PR933
+
+fastcc bool %test() {
+       ret bool true
+}