Fix formatting of function declarations returning a pointer in
previous commit. * varobj.c (varobj_add_child): Ditto. * hppa-tdep.h (hppa_init_objfile_priv_data): Ditto. * inferior.h (get_displaced_step_closure_by_addr): Ditto.
This commit is contained in:
parent
24e9cda068
commit
9a1edae687
4 changed files with 13 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
Fix formatting of function declarations returning a pointer in
|
||||
previous commit.
|
||||
* varobj.c (varobj_add_child): Ditto.
|
||||
* hppa-tdep.h (hppa_init_objfile_priv_data): Ditto.
|
||||
* inferior.h (get_displaced_step_closure_by_addr): Ditto.
|
||||
|
||||
2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Add support
|
||||
|
|
|
@ -240,7 +240,7 @@ extern struct minimal_symbol *
|
|||
hppa_lookup_stub_minimal_symbol (const char *name,
|
||||
enum unwind_stub_types stub_type);
|
||||
|
||||
extern struct hppa_objfile_private * hppa_init_objfile_priv_data (struct objfile *objfile);
|
||||
extern struct hppa_objfile_private *hppa_init_objfile_priv_data (struct objfile *objfile);
|
||||
|
||||
extern int hppa_in_solib_call_trampoline (struct gdbarch *gdbarch,
|
||||
CORE_ADDR pc, char *name);
|
||||
|
|
|
@ -366,7 +366,7 @@ extern int debug_displaced;
|
|||
void displaced_step_dump_bytes (struct ui_file *file,
|
||||
const gdb_byte *buf, size_t len);
|
||||
|
||||
struct displaced_step_closure* get_displaced_step_closure_by_addr (CORE_ADDR addr);
|
||||
struct displaced_step_closure *get_displaced_step_closure_by_addr (CORE_ADDR addr);
|
||||
|
||||
/* Possible values for gdbarch_call_dummy_location. */
|
||||
#define ON_STACK 1
|
||||
|
|
|
@ -296,9 +296,9 @@ static int is_root_p (struct varobj *var);
|
|||
|
||||
#if HAVE_PYTHON
|
||||
|
||||
static struct varobj * varobj_add_child (struct varobj *var,
|
||||
const char *name,
|
||||
struct value *value);
|
||||
static struct varobj *varobj_add_child (struct varobj *var,
|
||||
const char *name,
|
||||
struct value *value);
|
||||
|
||||
#endif /* HAVE_PYTHON */
|
||||
|
||||
|
|
Loading…
Reference in a new issue