llvm-6502/test/Transforms/InstCombine/2003-11-13-ConstExprCastCall.ll
2009-09-08 22:34:10 +00:00

9 lines
234 B
LLVM

; 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
}