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

implementation

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