1# A function whose prologue and epilogue are described perfectly. eh_frame 2# augmentation machinery should detect that no augmentation is needed and use 3# eh_frame directly. 4 5 .text 6 .globl foo 7foo: 8 .cfi_startproc 9 pushq %rax 10 .cfi_def_cfa_offset 16 11 int3 12 pop %rcx 13 .cfi_def_cfa_offset 8 14 retq 15 .cfi_endproc 16 17 .globl asm_main 18asm_main: 19 .cfi_startproc 20 callq foo 21 retq 22 .cfi_endproc 23