2008-05-03 Luis Machado <luisgpm@br.ibm.com>

Thiago Jung Bauermann  <bauerman@br.ibm.com>

	* cli/cli-decode.c (lookup_cmd_1): Fix indentation.
	* doublest.c (convert_typed_floating): Fix typo in comment.
	* dwarf2-frame.c (dwarf2_frame_cache): Likewise.
	* frame-unwind.h (frame_sniffer_ftype): Likewise.
	* frame.c (frame_unwind_address_in_block): Likewise.
	* ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Likewise.
	* symtab.h (struct symbol): Likewise.
	* tramp-frame.h (struct trad_frame_cache): Likewise.
	* value.c (allocate_repeat_value): Likewise.
This commit is contained in:
Thiago Jung Bauermann 2008-05-03 23:24:17 +00:00
parent 0b02b92d05
commit 938f5214c6
10 changed files with 24 additions and 11 deletions

View File

@ -1,3 +1,16 @@
2008-05-03 Luis Machado <luisgpm@br.ibm.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* cli/cli-decode.c (lookup_cmd_1): Fix indentation.
* doublest.c (convert_typed_floating): Fix typo in comment.
* dwarf2-frame.c (dwarf2_frame_cache): Likewise.
* frame-unwind.h (frame_sniffer_ftype): Likewise.
* frame.c (frame_unwind_address_in_block): Likewise.
* ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Likewise.
* symtab.h (struct symbol): Likewise.
* tramp-frame.h (struct trad_frame_cache): Likewise.
* value.c (allocate_repeat_value): Likewise.
2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
* infrun.c (handle_inferior_event): Do not insert breakpoints at

View File

@ -1160,7 +1160,7 @@ lookup_cmd_1 (char **text, struct cmd_list_element *clist,
flags */
if (found->flags & DEPRECATED_WARN_USER)
deprecated_cmd_warning (&line);
deprecated_cmd_warning (&line);
found = found->cmd_pointer;
}
/* If we found a prefix command, keep looking. */

View File

@ -940,7 +940,7 @@ convert_typed_floating (const void *from, const struct type *from_type,
else
{
/* The floating-point types don't match. The best we can do
(aport from simulating the target FPU) is converting to the
(apart from simulating the target FPU) is converting to the
widest floating-point type supported by the host, and then
again to the desired type. */
DOUBLEST d;

View File

@ -929,7 +929,7 @@ dwarf2_frame_cache (struct frame_info *this_frame, void **this_cache)
/* Then decode the insns in the FDE up to our target PC. */
execute_cfa_program (fde, fde->instructions, fde->end, this_frame, fs);
/* Caclulate the CFA. */
/* Calculate the CFA. */
switch (fs->cfa_how)
{
case CFA_REG_OFFSET:

View File

@ -32,8 +32,8 @@ struct value;
/* The following unwind functions assume a chain of frames forming the
sequence: (outer) prev <-> this <-> next (inner). All the
functions are called with called with the next frame's `struct
frame_info' and and this frame's prologue cache.
functions are called with the next frame's `struct frame_info'
and this frame's prologue cache.
THIS frame's register values can be obtained by unwinding NEXT
frame's registers (a recursive operation).

View File

@ -1535,7 +1535,7 @@ frame_unwind_address_in_block (struct frame_info *next_frame,
/* If THIS frame is not inner most (i.e., NEXT isn't the sentinel),
and NEXT is `normal' (i.e., not a sigtramp, dummy, ....) THIS
frame's PC ends up pointing at the instruction fallowing the
frame's PC ends up pointing at the instruction following the
"call". Adjust that PC value so that it falls on the call
instruction (which, hopefully, falls within THIS frame's code
block). So far it's proved to be a very good approximation. See

View File

@ -939,7 +939,7 @@ ppc64_sysv_abi_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
{
/* During the first pass, GPARAM and VPARAM are more like
offsets (start address zero) than addresses. That way
the accumulate the total stack space each region
they accumulate the total stack space each region
requires. */
gparam = 0;
vparam = 0;

View File

@ -630,7 +630,7 @@ struct symbol
const struct symbol_ops *ops;
/* Some symbols require additional information to be recorded on a
per- symbol basis. Stash those values here. */
per-symbol basis. Stash those values here. */
union
{
@ -639,7 +639,7 @@ struct symbol
/* An arbitrary data pointer. Note that this data must be
allocated using the same obstack as the symbol itself. */
/* So far it is only used by LOC_COMPUTED and LOC_COMPUTED_ARG to
find the location location information. For a LOC_BLOCK symbol
find the location information. For a LOC_BLOCK symbol
for a function in a compilation unit compiled with DWARF 2
information, this is information used internally by the DWARF 2
code --- specifically, the location expression for the frame

View File

@ -34,7 +34,7 @@ struct trad_frame_cache;
The only way to identify a trampoline is to perform a brute force
examination of the instructions at and around the PC.
This module provides a convent interface for performing that
This module provides a convenient interface for performing that
operation. */
/* A trampoline descriptor. */

View File

@ -240,7 +240,7 @@ allocate_value (struct type *type)
}
/* Allocate a value that has the correct length
for COUNT repetitions type TYPE. */
for COUNT repetitions of type TYPE. */
struct value *
allocate_repeat_value (struct type *type, int count)