llvm-6502/test/Transforms/InstCombine/2003-11-13-ConstExprCastCall.ll
2008-03-01 09:15:35 +00:00

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
}