New testcase for poitner problem

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3657 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-10 19:41:57 +00:00
parent 2a7c23ef91
commit 4229be3ce7

View File

@ -0,0 +1,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
}