Change these tests to feed the assembly files to opt directly, instead
[oota-llvm.git] / test / Transforms / InstCombine / 2003-11-03-VarargsCallBug.ll
1 ; The cast in this testcase is not eliminable on a 32-bit target!
2 ; RUN: opt %s -instcombine | llvm-dis | grep inttoptr
3
4 target datalayout = "e-p:32:32"
5
6 declare void @foo(...)
7
8 define void @test(i64 %X) {
9         %Y = inttoptr i64 %X to i32*            ; <i32*> [#uses=1]
10         call void (...)* @foo( i32* %Y )
11         ret void
12 }
13