From: Chris Lattner Date: Sun, 24 Aug 2003 00:21:50 +0000 (+0000) Subject: New testcase, distilled from 176.gcc X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f3f062eb71d8725ef4e91f630c9c6481b2b0d569;p=oota-llvm.git New testcase, distilled from 176.gcc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8096 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx b/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx new file mode 100644 index 00000000000..a8b2944216c --- /dev/null +++ b/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx @@ -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 +} +