2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
authorThiago Jung Bauermann <bauerman@br.ibm.com>
Tue, 11 Jan 2011 19:39:35 +0000 (19:39 +0000)
committerThiago Jung Bauermann <bauerman@br.ibm.com>
Tue, 11 Jan 2011 19:39:35 +0000 (19:39 +0000)
* breakpoint.c (resources_needed_watchpoint): Fix indentation.
* gdbtypes.c (is_scalar_type_recursive): Fix formatting.

gdb/ChangeLog
gdb/breakpoint.c
gdb/gdbtypes.c

index 41a190bd29caae8ec1ed2bb8efe0c28c5c8112ac..277c94f9f5d5b0c1bd764d28af63ae009cf3150f 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-11  Thiago Jung Bauermann  <bauerman@br.ibm.com>
+
+       * breakpoint.c (resources_needed_watchpoint): Fix indentation.
+       * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
+
 2011-01-11  Sergio Durigan Junior  <sergiodj@linux.vnet.ibm.com>
            Thiago Jung Bauermann  <bauerman@br.ibm.com>
 
index 3db940161f8b0cf3184582e34cf2103ddb3f66b6..8d0692b8c9eefd78d9953b2c2766da0a00296fd0 100644 (file)
@@ -8278,9 +8278,9 @@ remove_watchpoint (struct bp_location *bl)
 static int
 resources_needed_watchpoint (const struct bp_location *bl)
 {
-    int length = bl->owner->exact? 1 : bl->length;
+  int length = bl->owner->exact? 1 : bl->length;
 
-    return target_region_ok_for_hw_watchpoint (bl->address, length);
+  return target_region_ok_for_hw_watchpoint (bl->address, length);
 }
 
 /* The breakpoint_ops structure to be used in hardware watchpoints.  */
index a01f326e8d3348a8fef35fbd6a77db3df8305fb1..2cf1b4d686baa644cdc837dd6a096738de9da1b1 100644 (file)
@@ -1977,8 +1977,8 @@ is_scalar_type (struct type *type)
 }
 
 /* Return true if T is scalar, or a composite type which in practice has
-   the memory layout of a scalar type. E.g., an array or struct with only one
-   scalar element inside it, or a union with only scalar elements.  */
+   the memory layout of a scalar type.  E.g., an array or struct with only
+   one scalar element inside it, or a union with only scalar elements.  */
 
 int
 is_scalar_type_recursive (struct type *t)