2003-11-03-VarargsCallBug.ll 327 B

12345678910111213
  1. ; The cast in this testcase is not eliminable on a 32-bit target!
  2. ; RUN: opt < %s -instcombine -S | grep inttoptr
  3. target datalayout = "e-p:32:32"
  4. declare void @foo(...)
  5. define void @test(i64 %X) {
  6. %Y = inttoptr i64 %X to i32* ; <i32*> [#uses=1]
  7. call void (...) @foo( i32* %Y )
  8. ret void
  9. }