aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LevelRaise/2002-09-10-PointerAdds.ll
blob: 493b88fcfd4e4b64ead834f3e45f765384009d3e (plain)
1
2
3
4
5
6
7
8
9
; 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
}