Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / ELF / pr19430.s
blob8ae0d8349e6d7f7d19452ed1fb760223a5f189f3
1 // RUN: llvm-mc -triple x86_64-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -r - | FileCheck %s
3 // Test that we can use .cfi_startproc without a global symbol.
5 .text
6 .space 1000
7 .cfi_startproc
8 .cfi_endproc
10 // CHECK: Relocations [
11 // CHECK-NEXT: Section ({{.*}}) .rela.eh_frame {
12 // CHECK-NEXT: 0x20 R_X86_64_PC32 .text 0x3E8
13 // CHECK-NEXT: }
14 // CHECK-NEXT: ]