diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-08 05:06:29 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-08 05:06:29 +0000 |
commit | cd13e75097168e77f6aa71e6def512388d891ac8 (patch) | |
tree | e386a0ed579f2a391d373400bc122efc10b788c8 /gcc/basic-block.h | |
parent | 5f2f32bd7876fbc6e4942ada5855275e16986784 (diff) | |
download | gcc-cd13e75097168e77f6aa71e6def512388d891ac8.tar.gz |
* basic-block.h (conflict_graph_enum_fn): K&R fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33021 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |