mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
211 B
Plaintext
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
|
|
}
|
|
|