From 7e51717cfba50c7bd4e44d96afc06b3ac169dca3 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 6 Jul 2003 22:42:56 +0200 Subject: stmt.c: Convert remaining prototypes to ISO C90. * stmt.c: Convert remaining prototypes to ISO C90. * cfglayout.c: Likewise. * dbxout.c: Likewise. * gcc.c: Likewise. * genemit.c: Likewise. From-SVN: r69015 --- gcc/stmt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/stmt.c') diff --git a/gcc/stmt.c b/gcc/stmt.c index ce11895..493c87a 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -5130,7 +5130,8 @@ struct case_bit_test /* Determine whether "1 << x" is relatively cheap in word_mode. */ -static bool lshift_cheap_p () +static +bool lshift_cheap_p (void) { static bool init = false; static bool cheap = true; @@ -5150,9 +5151,8 @@ static bool lshift_cheap_p () number of case nodes, i.e. the node with the most cases gets tested first. */ -static int case_bit_test_cmp (p1, p2) - const void *p1; - const void *p2; +static +int case_bit_test_cmp (const void *p1, const void *p2) { const struct case_bit_test *d1 = p1; const struct case_bit_test *d2 = p2; -- cgit v1.1