[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / Inline / inline-constexpr-addrspacecast-argument.ll
blob82fb54130f6256d827ca874a4d93fa06dce40ac3
1 ; RUN: opt -S -passes=inline < %s | FileCheck %s
2 ; RUN: opt -S -passes='cgscc(inline)' < %s | FileCheck %s
3 ; RUN: opt -S -passes='module-inline' < %s | FileCheck %s
5 target datalayout = "e-p3:32:32-p4:64:64-n32"
7 @lds = internal addrspace(3) global [64 x i64] zeroinitializer
9 ; CHECK-LABEL: @constexpr_addrspacecast_ptr_size_change(
10 ; CHECK: load i64, ptr addrspace(4) addrspacecast (ptr addrspace(3) @lds to ptr addrspace(4))
11 ; CHECK-NEXT: br
12 define void @constexpr_addrspacecast_ptr_size_change(i1 %c) #0 {
13   %tmp0 = call i32 @foo(i1 %c, ptr addrspace(4) addrspacecast (ptr addrspace(3) @lds to ptr addrspace(4))) #1
14   ret void
17 define i32 @foo(i1 %c, ptr addrspace(4) %arg) #1 {
18 bb:
19   %tmp = getelementptr i64, ptr addrspace(4) %arg, i64 undef
20   %tmp1 = load i64, ptr addrspace(4) %tmp
21   br i1 %c, label %bb2, label %bb3
23 bb2:
24   store i64 0, ptr addrspace(4) %tmp
25   br label %bb3
27 bb3:
28   unreachable
31 attributes #0 = { nounwind }
32 attributes #1 = { alwaysinline nounwind }