llvm-6502/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll
2006-12-02 04:23:10 +00:00

11 lines
273 B
LLVM

; This situation can occur due to the funcresolve pass.
;
; RUN: llvm-upgrade < %s | llvm-as | 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
}