aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll
blob: 008aea4fe200c5bc5511e91c83521e9686dbc73f (plain)
1
2
3
4
5
6
7
8
9
10
; 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
}