llvm-6502/test/Transforms/LevelRaise/2002-09-10-PointerAdds.ll

10 lines
182 B
LLVM
Raw Normal View History

; 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
}