mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
0cc7f5e34a
llvm-svn: 83826
12 lines
321 B
LLVM
12 lines
321 B
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
declare void @free(i8*)
|
|
|
|
define void @test(i32* %X) {
|
|
call void (...)* bitcast (void (i8*)* @free to void (...)*)( i32* %X ) ; <i32>:1 [#uses=0]
|
|
; CHECK: %tmp = bitcast i32* %X to i8*
|
|
; CHECK: call void @free(i8* %tmp)
|
|
ret void
|
|
; CHECK: ret void
|
|
}
|