From f3f062eb71d8725ef4e91f630c9c6481b2b0d569 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 24 Aug 2003 00:21:50 +0000 Subject: [PATCH] New testcase, distilled from 176.gcc 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 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/CodeGen/X86/2003-08-23-DeadBlockTest.llx 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 +} + -- 2.34.1