* basic-block.h (conflict_graph_enum_fn): K&R fix.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 8 Apr 2000 05:06:29 +0000 (05:06 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 8 Apr 2000 05:06:29 +0000 (05:06 +0000)
From-SVN: r33021

gcc/ChangeLog
gcc/basic-block.h

index 3ff67077c86bcb3238e6f47647b634e7eeddf27e..47fccd140bfa6ae5e724ee09ed438992d9930692 100644 (file)
@@ -1,3 +1,7 @@
+2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * basic-block.h (conflict_graph_enum_fn): K&R fix.
+
 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * tree.c (tree_expr_nonnegative_p): New function.
index e59c16e6a76751353675e0f6e02288cdbbb6c22e..1f98fa4dabd8b2064a5380c014cf861161eb1f32 100644 (file)
@@ -469,7 +469,7 @@ typedef struct conflict_graph_def *conflict_graph;
 /* Callback function when enumerating conflicts.  The arguments are
    the smaller and larger regno in the conflict.  Returns zero if
    enumeration is to continue, non-zero to halt enumeration.  */
-typedef int (*conflict_graph_enum_fn) (int, int, void *);
+typedef int (*conflict_graph_enum_fn) PARAMS ((int, int, void *));
 
 
 /* Prototypes of operations on conflict graphs.  */