1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/LevelRaise/2002-09-10-PointerAdds.ll
Chris Lattner f23529513c New testcase for poitner problem
llvm-svn: 3657
2002-09-10 19:41:57 +00:00

10 lines
182 B
LLVM

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