1# Test restoring of register values. 2 3# REQUIRES: target-x86_64, system-linux, native 4 5# RUN: %clang_host %p/Inputs/call-asm.c %p/Inputs/eh-frame-dwarf-unwind-abort.s -o %t 6# RUN: %lldb %t -s %s -o exit | FileCheck %s 7 8process launch 9# CHECK: stop reason = signal SIGTRAP 10 11thread backtrace 12# CHECK: frame #0: {{.*}}`asm_main + 19 13# CHECK: frame #1: {{.*}}`main + {{.*}} 14 15target modules show-unwind -n asm_main 16# CHECK: eh_frame UnwindPlan: 17# CHECK: row[0]: 0: CFA=rsp +8 => rip=[CFA-8] 18# CHECK: row[1]: 10: CFA=rsp+16 => rbp=[CFA-16] rip=[CFA-8] 19# CHECK: row[2]: 13: CFA=rbp+16 => rbp=[CFA-16] rip=[CFA-8] 20# CHECK: row[3]: 18: CFA=rsp +8 => rip=[CFA-8] 21