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

implementation

int %test() {
entry:   ret int 7 
Test:   ; dead block!
	%A = call int %test()
	%B = call int %test()
	%C = add int %A, %B
    	ret int %C
}