Change these tests to feed the assembly files to opt directly, instead
[oota-llvm.git] / test / Transforms / InstCombine / 2003-11-13-ConstExprCastCall.ll
1 ; RUN: opt %s -instcombine | llvm-dis | grep call | notcast
2
3 declare void @free(i8*)
4
5 define void @test(i32* %X) {
6         call void (...)* bitcast (void (i8*)* @free to void (...)*)( i32* %X )          ; <i32>:1 [#uses=0]
7         ret void
8 }