llvm-project/llvm/test/CodeGen/X86/basic-block-sections-unreachable.ll
Nikita Popov 2f448bf509 [X86] Migrate tests to use opaque pointers (NFC)
Test updates were performed using:
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34

These are only the test updates where the test passed without
further modification (which is almost all of them, as the backend
is largely pointer-type agnostic).
2022-06-22 14:38:25 +02:00

19 lines
783 B
LLVM

; Check that basic block section is emitted when a non-entry block has no predecessors.
; RUN: llc < %s -mtriple=x86_64 -O0 -basic-block-sections=all | FileCheck %s --check-prefix=CHECK-SECTIONS
; RUN: llc < %s -mtriple=x86_64 -O0 | FileCheck %s --check-prefix=CHECK-NOSECTIONS
define void @foo(ptr %bar) {
%v = load i32, ptr %bar
switch i32 %v, label %default [
i32 0, label %target
]
target:
ret void
;; This is the block which will not have any predecessors. If the block is not garbage collected, it must
;; be placed in a basic block section with a corresponding symbol.
default:
unreachable
; CHECK-NOSECTIONS: # %bb.2: # %default
; CHECK-SECTIONS: .section .text.foo,"ax",@progbits,unique,2
; CHECK-SECTIONS-NEXT: foo.__part.2: # %default
}