aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2003-11-13-ConstExprCastCall.ll
blob: 23fe07d2b307b009d3a824dde2693f3dc73eced0 (plain)
1
2
3
4
5
6
7
8
9
; 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
}