1// RUN: llvm-mc -triple x86_64-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -r - | FileCheck %s 2 3// Test that we can use .cfi_startproc without a global symbol. 4 5.text 6.space 1000 7.cfi_startproc 8 .cfi_endproc 9 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: ] 15