blob: 8fc0f3471dfd8fad12c288d6e6474944317778f3 (
plain)
1
2
3
4
5
6
7
8
|
; RUN: opt < %s -instcombine -S | grep call | notcast
declare void @free(i8*)
define void @test(i32* %X) {
call void (...)* bitcast (void (i8*)* @free to void (...)*)( i32* %X ) ; <i32>:1 [#uses=0]
ret void
}
|