Fix a few typos

gdb/ChangeLog:

	* maint.c (scoped_command_stats::scoped_command_stats): Fix typo.
	* ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Likewise.
	* ppcobsd-tdep.c (_initialize_ppcobsd_tdep): Likewise.
	* ui-out.c (ui_out_new): Likewise.
	* utils.c (init_page_info): Likewise.
	(reset_prompt_for_continue_wait_time): Likewise.
	* windows-nat.c (windows_init_thread_list): Likewise.
	* xtensa-tdep.c (call0_analyze_prologue): Likewise.
This commit is contained in:
Simon Marchi 2016-11-04 23:47:32 -04:00
parent 7989954c57
commit 26c4b26f0c
8 changed files with 19 additions and 8 deletions

View File

@ -1,3 +1,14 @@
2016-11-04 Simon Marchi <simon.marchi@polymtl.ca>
* maint.c (scoped_command_stats::scoped_command_stats): Fix typo.
* ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Likewise.
* ppcobsd-tdep.c (_initialize_ppcobsd_tdep): Likewise.
* ui-out.c (ui_out_new): Likewise.
* utils.c (init_page_info): Likewise.
(reset_prompt_for_continue_wait_time): Likewise.
* windows-nat.c (windows_init_thread_list): Likewise.
* xtensa-tdep.c (call0_analyze_prologue): Likewise.
2016-10-29 Manish Goregaokar <manish@mozilla.com>
* rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`

View File

@ -912,7 +912,7 @@ scoped_command_stats::scoped_command_stats (bool msg_type)
else
m_symtab_enabled = 0;
/* Initalize timer to keep track of how long we waited for the user. */
/* Initialize timer to keep track of how long we waited for the user. */
reset_prompt_for_continue_wait_time ();
}

View File

@ -199,7 +199,7 @@ _initialize_ppcnbsd_tdep (void)
ppcnbsd_init_abi);
/* Avoid initializing the register offsets again if they were
already initailized by ppcnbsd-nat.c. */
already initialized by ppcnbsd-nat.c. */
if (ppcnbsd_reg_offsets.pc_offset == 0)
{
/* General-purpose registers. */

View File

@ -292,7 +292,7 @@ _initialize_ppcobsd_tdep (void)
ppcobsd_init_abi);
/* Avoid initializing the register offsets again if they were
already initailized by ppcobsd-nat.c. */
already initialized by ppcobsd-nat.c. */
if (ppcobsd_reg_offsets.pc_offset == 0)
{
/* General-purpose registers. */

View File

@ -901,7 +901,7 @@ ui_out_query_field (struct ui_out *uiout, int colno,
return 0;
}
/* Initalize private members at startup. */
/* Initialize private members at startup. */
struct ui_out *
ui_out_new (const struct ui_out_impl *impl, void *data,

View File

@ -1642,7 +1642,7 @@ static char *wrap_indent;
static int wrap_column;
/* Inialize the number of lines per page and chars per line. */
/* Initialize the number of lines per page and chars per line. */
void
init_page_info (void)
@ -1873,7 +1873,7 @@ prompt_for_continue (void)
do_cleanups (old_chain);
}
/* Initalize timer to keep track of how long we waited for the user. */
/* Initialize timer to keep track of how long we waited for the user. */
void
reset_prompt_for_continue_wait_time (void)

View File

@ -409,7 +409,7 @@ windows_add_thread (ptid_t ptid, HANDLE h, void *tlb)
return th;
}
/* Clear out any old thread list and reintialize it to a
/* Clear out any old thread list and reinitialize it to a
pristine state. */
static void
windows_init_thread_list (void)

View File

@ -2401,7 +2401,7 @@ call0_analyze_prologue (struct gdbarch *gdbarch,
arg was not supplied to avoid probing beyond the end of valid memory.
If memory is full of garbage that classifies as c0opc_uninteresting.
If this fails (eg. if no symbols) pc ends up 0 as it was.
Intialize the Call0 frame and register tracking info.
Initialize the Call0 frame and register tracking info.
Assume it's Call0 until an 'entry' instruction is encountered.
Assume we may be in the prologue until we hit a flow control instr. */