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

33 lines
716 B
LLVM

; RUN: opt -passes=inline -S -o - < %s | FileCheck %s
; RUN: opt -passes='module-inline' -S < %s | FileCheck %s
%0 = type opaque
%struct.Foo = type { i32, ptr }
; Test that we don't crash when inlining @bar (rdar://22521387).
define void @foo(i1 %c, ptr align 4 %a) {
entry:
call fastcc void @bar(i1 %c, ptr nonnull align 4 undef)
; CHECK: call void @llvm.assume(i1 undef)
; CHECK: unreachable
ret void
}
define fastcc void @bar(i1 %c, ptr align 4 %a) {
; CHECK-LABEL: @bar
entry:
%b = getelementptr inbounds %struct.Foo, ptr %a, i32 0, i32 1
br i1 %c, label %if.end, label %if.then.i.i
if.then.i.i:
call void @llvm.assume(i1 undef)
unreachable
if.end:
ret void
}
declare void @llvm.assume(i1)