2008-05-03 Luis Machado <luisgpm@br.ibm.com>
authorThiago Jung Bauermann <bauerman@br.ibm.com>
Sat, 3 May 2008 23:24:17 +0000 (23:24 +0000)
committerThiago Jung Bauermann <bauerman@br.ibm.com>
Sat, 3 May 2008 23:24:17 +0000 (23:24 +0000)
    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.

gdb/ChangeLog
gdb/cli/cli-decode.c
gdb/doublest.c
gdb/dwarf2-frame.c
gdb/frame-unwind.h
gdb/frame.c
gdb/ppc-sysv-tdep.c
gdb/symtab.h
gdb/tramp-frame.h
gdb/value.c

index 6d67b1db5951c24f885327657838567445b8e64f..885db4f40768e4e76b040984b169cc763d5c43ec 100644 (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
index 4e68f93db8f98dd2952ee0e1b348a58c8ad55508..965b193789878ff1fd7ea5b7b6f68f200c4757cd 100644 (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.  */
index 2edb57fb324567a4334451ffc47bf9ef065351c2..4af3446713b2f927a2db60b56a17946707479774 100644 (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;
index b90f976095b4d8a53b859731e0bd7b24e799468d..3385bdb0f33b7050abf70d17bd45cb2e6401f615 100644 (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:
index 9ffafffb26fb742b239c581f04b97fb93df45a04..3a35aa1b8eca3d58a6e872d802db4ffd92d813e5 100644 (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).
index f59cbebac7721bdf053eaf0add129aa12b87cc59..3658b0aca290a31ac0f25fb727702bb574739c4a 100644 (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
index 71b89339de2a6a48041a5ac078720f9368232f57..669165fc447f0d864a845d8e5caa7e3661255a12 100644 (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;
index deb7e02df6b2468b7c61ed1cc13ec5d476b8fd8c..cfdd2a465ff0f9be7a220a6a6148a47a29857456 100644 (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
index 3f73e85c1c8ba8cddf45ab8e6e4372d2eaaf7498..54d5261a3c9ec0043566018b8e3ef09036626f12 100644 (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.  */
index d11f953ee50791a035c1f6ec7f1459197673f930..e5a9a625ec0e4a8aa9a36efc9f1cefe1a2060968 100644 (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)
This page took 0.039237 seconds and 4 git commands to generate.