blob: 48623b90120eb73c3953dd322c8a93abb3c939ad [file] [log] [blame]
; 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
}