blob: 9efbf09b42665b035965bba55fc471be646e0b97 [file] [log] [blame]
; RUN: llvm-as < %s | 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
}