diff options
Diffstat (limited to 'gdb/tic6x-tdep.c')
-rw-r--r-- | gdb/tic6x-tdep.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/tic6x-tdep.c b/gdb/tic6x-tdep.c index bac8ba8..c7e42b1 100644 --- a/gdb/tic6x-tdep.c +++ b/gdb/tic6x-tdep.c @@ -452,8 +452,7 @@ tic6x_frame_base_address (const frame_info_ptr &this_frame, void **this_cache) return info->base; } -static const struct frame_unwind tic6x_frame_unwind = -{ +static const struct frame_unwind_legacy tic6x_frame_unwind ( "tic6x prologue", NORMAL_FRAME, FRAME_UNWIND_ARCH, @@ -462,7 +461,7 @@ static const struct frame_unwind tic6x_frame_unwind = tic6x_frame_prev_register, NULL, default_frame_sniffer -}; +); static const struct frame_base tic6x_frame_base = { @@ -516,8 +515,7 @@ tic6x_stub_unwind_sniffer (const struct frame_unwind *self, return 0; } -static const struct frame_unwind tic6x_stub_unwind = -{ +static const struct frame_unwind_legacy tic6x_stub_unwind ( "tic6x stub", NORMAL_FRAME, FRAME_UNWIND_ARCH, @@ -526,7 +524,7 @@ static const struct frame_unwind tic6x_stub_unwind = tic6x_frame_prev_register, NULL, tic6x_stub_unwind_sniffer -}; +); /* Return the instruction on address PC. */ |