* alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
authorMatt Kraai <kraai@alumni.cmu.edu>
Tue, 20 May 2003 01:49:12 +0000 (01:49 +0000)
committerMatt Kraai <kraai@gcc.gnu.org>
Tue, 20 May 2003 01:49:12 +0000 (01:49 +0000)
(nonlocal_set_p): Remove initial blank line.
* dwarf2out.c (simple_type_size_in_bits): Likewise.
* et-forest.c (et_forest_create): Likewise.
* explow.c (stabilize): Likewise.
* fix-header.c (write_lbrac): Likewise.
* graph.c (start_fct, node_data): Likewise.
* jump.c (only_sets_cc0_p, sets_cc0_p): Likewise.
* rtlanal.c (global_reg_mentioned_p): Likewise.
* tree.c (bit_position): Likewise.

From-SVN: r66984

gcc/ChangeLog
gcc/alias.c
gcc/dwarf2out.c
gcc/et-forest.c
gcc/explow.c
gcc/fix-header.c
gcc/graph.c
gcc/jump.c
gcc/rtlanal.c
gcc/tree.c

index 929ee6f..a3c36ba 100644 (file)
@@ -1,3 +1,16 @@
+2003-05-19  Matt Kraai  <kraai@alumni.cmu.edu>
+
+       * alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
+       (nonlocal_set_p): Remove initial blank line.
+       * dwarf2out.c (simple_type_size_in_bits): Likewise.
+       * et-forest.c (et_forest_create): Likewise.
+       * explow.c (stabilize): Likewise.
+       * fix-header.c (write_lbrac): Likewise.
+       * graph.c (start_fct, node_data): Likewise.
+       * jump.c (only_sets_cc0_p, sets_cc0_p): Likewise.
+       * rtlanal.c (global_reg_mentioned_p): Likewise.
+       * tree.c (bit_position): Likewise.
+
 2003-05-19  Alexandre Oliva  <aoliva@redhat.com>
 
        * config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct
index 4cd51e9..6a73d64 100644 (file)
@@ -2446,7 +2446,6 @@ static int
 nonlocal_mentioned_p (x)
      rtx x;
 {
-
   if (INSN_P (x))
     {
       if (GET_CODE (x) == CALL_INSN)
@@ -2544,7 +2543,6 @@ static int
 nonlocal_referenced_p (x)
      rtx x;
 {
-
   if (INSN_P (x))
     {
       if (GET_CODE (x) == CALL_INSN)
@@ -2624,7 +2622,6 @@ static int
 nonlocal_set_p (x)
      rtx x;
 {
-
   if (INSN_P (x))
     {
       if (GET_CODE (x) == CALL_INSN)
index 66e5eaf..aa65780 100644 (file)
@@ -8032,7 +8032,6 @@ static inline unsigned HOST_WIDE_INT
 simple_type_size_in_bits (type)
      tree type;
 {
-
   if (TREE_CODE (type) == ERROR_MARK)
     return BITS_PER_WORD;
   else if (TYPE_SIZE (type) == NULL_TREE)
index b54f3f7..1a9d5a3 100644 (file)
@@ -439,7 +439,6 @@ calculate_value (node)
 et_forest_t
 et_forest_create ()
 {
-
   et_forest_t forest = xmalloc (sizeof (struct et_forest));
 
   forest->nnodes = 0;
index b6c290f..7114094 100644 (file)
@@ -684,7 +684,6 @@ rtx
 stabilize (x)
      rtx x;
 {
-
   if (GET_CODE (x) != MEM
       || ! rtx_unstable_p (XEXP (x, 0)))
     return x;
index 6ec7851..745570c 100644 (file)
@@ -415,7 +415,6 @@ int required_other = 0;
 static void
 write_lbrac ()
 {
-
 #if ADD_MISSING_EXTERN_C
   if (missing_extern_C_count + required_unseen_count > 0)
     fprintf (outf, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
index 5b660be..009d876 100644 (file)
@@ -51,7 +51,6 @@ static void
 start_fct (fp)
      FILE *fp;
 {
-
   switch (graph_dump_format)
     {
     case vcg:
@@ -110,7 +109,6 @@ node_data (fp, tmp_rtx)
      FILE *fp;
      rtx tmp_rtx;
 {
-
   if (PREV_INSN (tmp_rtx) == 0)
     {
       /* This is the first instruction.  Add an edge from the starting
index 4cb9bcb..f59fdbc 100644 (file)
@@ -1278,7 +1278,6 @@ int
 only_sets_cc0_p (x)
      rtx x;
 {
-
   if (! x)
     return 0;
 
@@ -1297,7 +1296,6 @@ int
 sets_cc0_p (x)
      rtx x;
 {
-
   if (! x)
     return 0;
 
index 1972375..b7fbe4a 100644 (file)
@@ -636,7 +636,6 @@ int
 global_reg_mentioned_p (x)
      rtx x;
 {
-
   if (INSN_P (x))
     {
       if (GET_CODE (x) == CALL_INSN)
index 7c04b3d..3271a5b 100644 (file)
@@ -1186,7 +1186,6 @@ tree
 bit_position (field)
      tree field;
 {
-
   return bit_from_pos (DECL_FIELD_OFFSET (field),
                       DECL_FIELD_BIT_OFFSET (field));
 }