mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
c072619922
llvm-svn: 47793
10 lines
255 B
LLVM
10 lines
255 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep call | notcast
|
|
|
|
declare void @free(i8*)
|
|
|
|
define void @test(i32* %X) {
|
|
call i32 (...)* bitcast (void (i8*)* @free to i32 (...)*)( i32* %X ) ; <i32>:1 [#uses=0]
|
|
ret void
|
|
}
|
|
|