brintos

brintos / llvm-project-archived public Read only

0
0
Text · 331 B · 88f8f78 Raw
14 lines · plain
1; The cast in this testcase is not eliminable on a 32-bit target!2; RUN: opt < %s -passes=instcombine -S | grep inttoptr3 4target datalayout = "e-p:32:32"5 6declare void @foo(...)7 8define void @test(i64 %X) {9        %Y = inttoptr i64 %X to ptr            ; <ptr> [#uses=1]10        call void (...) @foo( ptr %Y )11        ret void12}13 14