blob: 493b88fcfd4e4b64ead834f3e45f765384009d3e [file] [log] [blame]
; RUN: 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
}