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/mips-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/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 61545ae..ea7c624 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -2902,6 +2902,7 @@ mips_insn16_frame_sniffer (const struct frame_unwind *self, static const struct frame_unwind mips_insn16_frame_unwind = { + "mips insn16 prologue", NORMAL_FRAME, default_frame_unwind_stop_reason, mips_insn16_frame_this_id, @@ -3337,6 +3338,7 @@ mips_micro_frame_sniffer (const struct frame_unwind *self, static const struct frame_unwind mips_micro_frame_unwind = { + "mips micro prologue", NORMAL_FRAME, default_frame_unwind_stop_reason, mips_micro_frame_this_id, @@ -3712,6 +3714,7 @@ mips_insn32_frame_sniffer (const struct frame_unwind *self, static const struct frame_unwind mips_insn32_frame_unwind = { + "mips insn32 prologue", NORMAL_FRAME, default_frame_unwind_stop_reason, mips_insn32_frame_this_id, @@ -3828,6 +3831,7 @@ mips_stub_frame_sniffer (const struct frame_unwind *self, static const struct frame_unwind mips_stub_frame_unwind = { + "mips stub", NORMAL_FRAME, default_frame_unwind_stop_reason, mips_stub_frame_this_id, |