1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/CodeGen/X86/2003-08-23-DeadBlockTest.llx
2007-01-17 07:59:14 +00:00

14 lines
211 B
Plaintext

; 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
}