Commit b0340202 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* basic-block.h (conflict_graph_enum_fn): K&R fix.

From-SVN: r33021
parent ed343779
2000-04-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 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.c (tree_expr_nonnegative_p): New function.
* tree.h (tree_expr_nonnegative_p): Declare. * tree.h (tree_expr_nonnegative_p): Declare.
......
...@@ -469,7 +469,7 @@ typedef struct conflict_graph_def *conflict_graph; ...@@ -469,7 +469,7 @@ typedef struct conflict_graph_def *conflict_graph;
/* Callback function when enumerating conflicts. The arguments are /* Callback function when enumerating conflicts. The arguments are
the smaller and larger regno in the conflict. Returns zero if the smaller and larger regno in the conflict. Returns zero if
enumeration is to continue, non-zero to halt enumeration. */ 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. */ /* Prototypes of operations on conflict graphs. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment