diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-03-24 23:31:49 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-03-24 23:38:19 -0400 |
commit | 1089d50d80bb1d78f018874124d71d7b92dc27f0 (patch) | |
tree | 00a3a029df61adb70016f9eb8fed0b09aefee318 /gdb/amd64-tdep.c | |
parent | 7fe4c96eba9d6bc48c6b92d16ab332e4a277f332 (diff) | |
download | gdb-users/simark/frame-debug.zip gdb-users/simark/frame-debug.tar.gz gdb-users/simark/frame-debug.tar.bz2 |
gdb: add names to unwindersusers/simark/frame-debug
Change-Id: I813f17777422425f0d08b22499817b23922e8ddb
Diffstat (limited to 'gdb/amd64-tdep.c')
-rw-r--r-- | gdb/amd64-tdep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c index 47d0063..4ad53c0 100644 --- a/gdb/amd64-tdep.c +++ b/gdb/amd64-tdep.c @@ -2698,6 +2698,7 @@ amd64_frame_prev_register (struct frame_info *this_frame, void **this_cache, static const struct frame_unwind amd64_frame_unwind = { + "amd64 prologue", NORMAL_FRAME, amd64_frame_unwind_stop_reason, amd64_frame_this_id, @@ -2842,6 +2843,7 @@ amd64_sigtramp_frame_sniffer (const struct frame_unwind *self, static const struct frame_unwind amd64_sigtramp_frame_unwind = { + "amd64 sigtramp", SIGTRAMP_FRAME, amd64_sigtramp_frame_unwind_stop_reason, amd64_sigtramp_frame_this_id, @@ -2977,6 +2979,7 @@ amd64_epilogue_frame_this_id (struct frame_info *this_frame, static const struct frame_unwind amd64_epilogue_frame_unwind = { + "amd64 epilogue", NORMAL_FRAME, amd64_epilogue_frame_unwind_stop_reason, amd64_epilogue_frame_this_id, |