New testcase that the raiseallocations pass should be able to handle.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10304 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-12-07 01:25:36 +00:00
parent 67b1e1b89f
commit 120fb19e1b

View File

@ -0,0 +1,10 @@
; This situation can occur due to the funcresolve pass.
;
; RUN: llvm-as < %s | opt -raiseallocs | llvm-dis | not grep call
declare void %free(sbyte*)
void %test(int *%P) {
call void(int*)* cast (void(sbyte*)* %free to void(int*)*)(int* %P)
ret void
}