summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/2012-07-30-addrsp-bitcast.ll
blob: 6e6bd4634827026cb2c04d736cd4b22275406804 (plain)
1
2
3
4
5
6
7
8
9
10
; 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
}