blob: 3b700ffd45743804bf16eb47cdbb4de5f36e8cf2 [file] [log] [blame]
; 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
}