mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
b65463d410
llvm-svn: 10304
11 lines
258 B
LLVM
11 lines
258 B
LLVM
; 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
|
|
}
|