New testcase, distilled from 176.gcc
authorChris Lattner <sabre@nondot.org>
Sun, 24 Aug 2003 00:21:50 +0000 (00:21 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 24 Aug 2003 00:21:50 +0000 (00:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8096 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/2003-08-23-DeadBlockTest.llx [new file with mode: 0644]

diff --git a/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx b/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx
new file mode 100644 (file)
index 0000000..a8b2944
--- /dev/null
@@ -0,0 +1,12 @@
+; RUN: as < %s | llc -march=x86
+
+implementation
+
+void %test() {
+entry:   ret void 
+Test:   ; dead block!
+       call void %test()
+       call void %test()
+       ret void
+}
+