mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
09b3764b2f
llvm-svn: 14561
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
; 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
|
|
}
|
|
|