| commit | 9fa89060095fc4ea9a56a6bdac92483918bb2cac | [log] [tgz] |
|---|---|---|
| author | Chris Lattner <sabre@nondot.org> | Sun Aug 24 00:21:50 2003 +0000 |
| committer | Chris Lattner <sabre@nondot.org> | Sun Aug 24 00:21:50 2003 +0000 |
| tree | 66ece35a4100962f7945e92e6f19a20b895d2fd1 | |
| parent | e6235443a5b17d04c0c51a9e544d02c89afc3eaf [diff] [blame] |
New testcase, distilled from 176.gcc llvm-svn: 8096
diff --git a/llvm/test/Regression/Jello/2003-08-23-DeadBlockTest.llx b/llvm/test/Regression/Jello/2003-08-23-DeadBlockTest.llx new file mode 100644 index 0000000..a8b2944 --- /dev/null +++ b/llvm/test/Regression/Jello/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 +} +