mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
55 lines
1.9 KiB
Diff
55 lines
1.9 KiB
Diff
2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
* tui/tui-disasm.c (tui_get_begin_asm_address): Default to
|
|
get_current_arch.
|
|
* tui/tui-layout.c (extract_display_start_addr): Likewise.
|
|
|
|
Index: src/gdb/tui/tui-disasm.c
|
|
===================================================================
|
|
RCS file: /cvs/src/src/gdb/tui/tui-disasm.c,v
|
|
retrieving revision 1.33
|
|
diff -u -p -r1.33 tui-disasm.c
|
|
--- src/gdb/tui/tui-disasm.c 1 Jan 2010 07:32:07 -0000 1.33
|
|
+++ src/gdb/tui/tui-disasm.c 20 Mar 2010 04:17:05 -0000
|
|
@@ -21,6 +21,7 @@
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "defs.h"
|
|
+#include "arch-utils.h"
|
|
#include "symtab.h"
|
|
#include "breakpoint.h"
|
|
#include "frame.h"
|
|
@@ -330,7 +331,7 @@ tui_get_begin_asm_address (struct gdbarc
|
|
{
|
|
struct tui_gen_win_info *locator;
|
|
struct tui_locator_element *element;
|
|
- struct gdbarch *gdbarch = NULL;
|
|
+ struct gdbarch *gdbarch = get_current_arch ();
|
|
CORE_ADDR addr;
|
|
|
|
locator = tui_locator_win_info_ptr ();
|
|
Index: src/gdb/tui/tui-layout.c
|
|
===================================================================
|
|
RCS file: /cvs/src/src/gdb/tui/tui-layout.c,v
|
|
retrieving revision 1.36
|
|
diff -u -p -r1.36 tui-layout.c
|
|
--- src/gdb/tui/tui-layout.c 1 Jan 2010 07:32:07 -0000 1.36
|
|
+++ src/gdb/tui/tui-layout.c 20 Mar 2010 04:17:05 -0000
|
|
@@ -21,6 +21,7 @@
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "defs.h"
|
|
+#include "arch-utils.h"
|
|
#include "command.h"
|
|
#include "symtab.h"
|
|
#include "frame.h"
|
|
@@ -522,7 +523,7 @@ static void
|
|
extract_display_start_addr (struct gdbarch **gdbarch_p, CORE_ADDR *addr_p)
|
|
{
|
|
enum tui_layout_type cur_layout = tui_current_layout ();
|
|
- struct gdbarch *gdbarch = NULL;
|
|
+ struct gdbarch *gdbarch = get_current_arch ();
|
|
CORE_ADDR addr;
|
|
CORE_ADDR pc;
|
|
struct symtab_and_line cursal = get_current_source_symtab_and_line ();
|