mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
563ba88392
llvm-svn: 8558
10 lines
187 B
LLVM
10 lines
187 B
LLVM
; RUN: llvm-as < %s | opt -raise
|
|
|
|
int* %test(int* %P, int* %Q) {
|
|
%P = cast int* %P to ulong
|
|
%Q = cast int* %Q to ulong
|
|
%V = add ulong %P, %Q
|
|
%V = cast ulong %V to int*
|
|
ret int* %V
|
|
}
|