aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx
blob: a0f8362667caf32e8d5aa65f560ed15504406871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | llc -march=x86

implementation

void %test() {
entry:   ret void 
Test:   ; dead block!
	call void %test()
	call void %test()
	ret void
}