1# RUN: llvm-mc -triple x86_64-unknown-linux %s -filetype=obj -o %t
2# RUN: not llvm-dwarfdump -debug-frame %t 2>&1 | FileCheck %s
3
4# CHECK: parsing FDE data at 0x0 failed due to missing CIE
5
6        .section .eh_frame,"a",@unwind
7## This FDE was formerly wrongly interpreted as a CIE because its CIE pointer
8## is similar to CIE id of a .debug_frame FDE.
9        .long .Lend - .LCIEptr  # Length
10.LCIEptr:
11        .long 0xffffffff        # CIE pointer
12        .quad 0x1111abcd        # Initial location
13        .quad 0x00010000        # Address range
14.Lend:
15