decl.c, utils2.c: Fix whitespace in last change.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 11 Aug 2007 16:38:51 +0000 (16:38 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 11 Aug 2007 16:38:51 +0000 (16:38 +0000)
        * decl.c, utils2.c: Fix whitespace in last change.

From-SVN: r127359

gcc/ada/ChangeLog
gcc/ada/decl.c
gcc/ada/utils2.c

index 396a32ac5ce6a34f1e7c4a5409eeec70b1ac021c..32b144f68bb03b4a41c4f875bfcb9da8e8ab1719 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * decl.c, utils2.c: Fix whitespace in last change.
+
 2007-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * decl.c (compare_field_bitpos): Constify.
index 5c202f0e7a756aabe15d38196066b9d2f740ce40..c82f3dc05e0ec5700b95df909725c8513ec35fb4 100644 (file)
@@ -5847,9 +5847,10 @@ is_variable_size (tree type)
 static int
 compare_field_bitpos (const PTR rt1, const PTR rt2)
 {
-  const_tree const field1 = * (const_tree const*) rt1;
-  const_tree const field2 = * (const_tree const*) rt2;
-  const int ret = tree_int_cst_compare (bit_position (field1), bit_position (field2));
+  const_tree const field1 = * (const_tree const *) rt1;
+  const_tree const field2 = * (const_tree const *) rt2;
+  const int ret
+    = tree_int_cst_compare (bit_position (field1), bit_position (field2));
 
   return ret ? ret : (int) (DECL_UID (field1) - DECL_UID (field2));
 }
index fe27288c5a5c3d23ce99561e44e490e1ec665ea6..9134f03b1ecbec5f352f597ad638906f927de8f1 100644 (file)
@@ -1542,11 +1542,12 @@ build_call_raise (int msg, Node_Id gnat_node, char kind)
 static int
 compare_elmt_bitpos (const PTR rt1, const PTR rt2)
 {
-  const_tree const elmt1 = * (const_tree const*) rt1;
-  const_tree const elmt2 = * (const_tree const*) rt2;
+  const_tree const elmt1 = * (const_tree const *) rt1;
+  const_tree const elmt2 = * (const_tree const *) rt2;
   const_tree const field1 = TREE_PURPOSE (elmt1);
   const_tree const field2 = TREE_PURPOSE (elmt2);
-  const int ret = tree_int_cst_compare (bit_position (field1), bit_position (field2));
+  const int ret
+    = tree_int_cst_compare (bit_position (field1), bit_position (field2));
 
   return ret ? ret : (int) (DECL_UID (field1) - DECL_UID (field2));
 }