23 lines · plain
1# A function whose prologue and epilogue are described perfectly. eh_frame2# augmentation machinery should detect that no augmentation is needed and use3# eh_frame directly.4 5 .text6 .globl foo7foo:8 .cfi_startproc9 pushq %rax10 .cfi_def_cfa_offset 1611 int312 pop %rcx13 .cfi_def_cfa_offset 814 retq15 .cfi_endproc16 17 .globl asm_main18asm_main:19 .cfi_startproc20 callq foo21 retq22 .cfi_endproc23