Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: gdb/arch-utils.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/arch-utils.h ('k') | gdb/arm-linux-nat.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 /* Dynamic architecture support for GDB, the GNU debugger. 1 /* Dynamic architecture support for GDB, the GNU debugger.
2 2
3 Copyright (C) 1998-2012 Free Software Foundation, Inc. 3 Copyright (C) 1998-2012 Free Software Foundation, Inc.
4 4
5 This file is part of GDB. 5 This file is part of GDB.
6 6
7 This program is free software; you can redistribute it and/or modify 7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or 9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version. 10 (at your option) any later version.
(...skipping 13 matching lines...) Expand all
24 #include "gdbcmd.h" 24 #include "gdbcmd.h"
25 #include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */ 25 #include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */
26 #include "gdb_string.h" 26 #include "gdb_string.h"
27 #include "regcache.h" 27 #include "regcache.h"
28 #include "gdb_assert.h" 28 #include "gdb_assert.h"
29 #include "sim-regno.h" 29 #include "sim-regno.h"
30 #include "gdbcore.h" 30 #include "gdbcore.h"
31 #include "osabi.h" 31 #include "osabi.h"
32 #include "target-descriptions.h" 32 #include "target-descriptions.h"
33 #include "objfiles.h" 33 #include "objfiles.h"
34 #include "language.h"
34 35
35 #include "version.h" 36 #include "version.h"
36 37
37 #include "floatformat.h" 38 #include "floatformat.h"
38 39
39 40
40 struct displaced_step_closure * 41 struct displaced_step_closure *
41 simple_displaced_step_copy_insn (struct gdbarch *gdbarch, 42 simple_displaced_step_copy_insn (struct gdbarch *gdbarch,
42 CORE_ADDR from, CORE_ADDR to, 43 CORE_ADDR from, CORE_ADDR to,
43 struct regcache *regs) 44 struct regcache *regs)
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 114 }
114 115
115 CORE_ADDR 116 CORE_ADDR
116 generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) 117 generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
117 { 118 {
118 return 0; 119 return 0;
119 } 120 }
120 121
121 int 122 int
122 generic_in_solib_return_trampoline (struct gdbarch *gdbarch, 123 generic_in_solib_return_trampoline (struct gdbarch *gdbarch,
123 » » » » CORE_ADDR pc, char *name) 124 » » » » CORE_ADDR pc, const char *name)
124 { 125 {
125 return 0; 126 return 0;
126 } 127 }
127 128
128 int 129 int
129 generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc) 130 generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
130 { 131 {
131 return 0; 132 return 0;
132 } 133 }
133 134
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 default_remote_register_number (struct gdbarch *gdbarch, 242 default_remote_register_number (struct gdbarch *gdbarch,
242 int regno) 243 int regno)
243 { 244 {
244 return regno; 245 return regno;
245 } 246 }
246 247
247 248
248 249
249 /* Functions to manipulate the endianness of the target. */ 250 /* Functions to manipulate the endianness of the target. */
250 251

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gdb/arch-utils.h ('k') | gdb/arm-linux-nat.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698