From: Kaveh R. Ghazi Date: Sat, 8 Apr 2000 05:06:29 +0000 (+0000) Subject: * basic-block.h (conflict_graph_enum_fn): K&R fix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b0340202d1d7cf28daee35b325dc65a7f19b631b;p=gcc.git * basic-block.h (conflict_graph_enum_fn): K&R fix. From-SVN: r33021 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ff67077c86..47fccd140bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-04-08 Kaveh R. Ghazi + + * basic-block.h (conflict_graph_enum_fn): K&R fix. + 2000-04-08 Kaveh R. Ghazi * tree.c (tree_expr_nonnegative_p): New function. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index e59c16e6a76..1f98fa4dabd 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -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. */