
These tests cases were converted using the script at https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 Differential Revision: https://reviews.llvm.org/D135094
11 lines
351 B
LLVM
11 lines
351 B
LLVM
; RUN: opt < %s -passes=instcombine -S | FileCheck %s
|
|
; CHECK: addrspacecast
|
|
|
|
@base = internal unnamed_addr addrspace(3) global [16 x i32] zeroinitializer, align 16
|
|
declare void @foo(ptr)
|
|
|
|
define void @test() nounwind {
|
|
call void @foo(ptr getelementptr (i32, ptr addrspacecast (ptr addrspace(3) @base to ptr), i64 2147483647)) nounwind
|
|
ret void
|
|
}
|