diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-04-08 05:06:29 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-04-08 05:06:29 +0000 |
commit | b0340202d1d7cf28daee35b325dc65a7f19b631b (patch) | |
tree | e386a0ed579f2a391d373400bc122efc10b788c8 | |
parent | ed343779f43f00bfe1196e37ece5878eaf58af2e (diff) | |
download | gcc-b0340202d1d7cf28daee35b325dc65a7f19b631b.zip gcc-b0340202d1d7cf28daee35b325dc65a7f19b631b.tar.gz gcc-b0340202d1d7cf28daee35b325dc65a7f19b631b.tar.bz2 |
* basic-block.h (conflict_graph_enum_fn): K&R fix.
From-SVN: r33021
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/basic-block.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ff6707..47fccd1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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. * tree.h (tree_expr_nonnegative_p): Declare. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index e59c16e..1f98fa4 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. */ |