llvm-project/llvm/test/Transforms/Inline/inline-constexpr-addrspacecast-argument.ll
Aiden Grossman f513f44bc6
[Inline] Remove redundant run lines in tests (#179959)
625038d5d5f406385f44983ac2a442b20ad7b241 added NewPM CGSCC coverage to
all of the inliner tests. Now that the NewPM is the default for the
middle end, both check lines cover the same thing (with -passes="inline"
expanding to -passes="cgscc(inline)"). Given that, remove them to get
rid of the redundancy and make the tests run slightly faster (not
measured).
2026-02-05 07:54:37 -08:00

32 lines
922 B
LLVM

; RUN: opt -S -passes=inline < %s | FileCheck %s
; RUN: opt -S -passes='module-inline' < %s | FileCheck %s
target datalayout = "e-p3:32:32-p4:64:64-n32"
@lds = internal addrspace(3) global [64 x i64] zeroinitializer
; CHECK-LABEL: @constexpr_addrspacecast_ptr_size_change(
; CHECK: load i64, ptr addrspace(4) addrspacecast (ptr addrspace(3) @lds to ptr addrspace(4))
; CHECK-NEXT: br
define void @constexpr_addrspacecast_ptr_size_change(i1 %c) #0 {
%tmp0 = call i32 @foo(i1 %c, ptr addrspace(4) addrspacecast (ptr addrspace(3) @lds to ptr addrspace(4))) #1
ret void
}
define i32 @foo(i1 %c, ptr addrspace(4) %arg) #1 {
bb:
%tmp = getelementptr i64, ptr addrspace(4) %arg, i64 undef
%tmp1 = load i64, ptr addrspace(4) %tmp
br i1 %c, label %bb2, label %bb3
bb2:
store i64 0, ptr addrspace(4) %tmp
br label %bb3
bb3:
unreachable
}
attributes #0 = { nounwind }
attributes #1 = { alwaysinline nounwind }