Commit d77fac3b by Jeff Law

expr.c (store_constructor_field): Add prototype.

        * expr.c (store_constructor_field): Add prototype.
        (memory_use_mode): Likewise.
        * expmed.c (synth_mult): Add prototype.
        (choose_multiplier, invert_mod2n): Likewise.

From-SVN: r19250
parent 242c13b0
...@@ -1914,6 +1914,15 @@ struct algorithm ...@@ -1914,6 +1914,15 @@ struct algorithm
char log[MAX_BITS_PER_WORD]; char log[MAX_BITS_PER_WORD];
}; };
static void synth_mult PROTO((struct algorithm *,
unsigned HOST_WIDE_INT,
int));
static unsigned HOST_WIDE_INT choose_multiplier PROTO((unsigned HOST_WIDE_INT,
int, int,
unsigned HOST_WIDE_INT *,
int *, int *));
static unsigned HOST_WIDE_INT invert_mod2n PROTO((unsigned HOST_WIDE_INT,
int));
/* Compute and return the best algorithm for multiplying by T. /* Compute and return the best algorithm for multiplying by T.
The algorithm must cost less than cost_limit The algorithm must cost less than cost_limit
If retval.cost >= COST_LIMIT, no algorithm was found and all If retval.cost >= COST_LIMIT, no algorithm was found and all
......
...@@ -164,9 +164,12 @@ static void clear_by_pieces_1 PROTO((rtx (*) (rtx, ...), enum machine_mode, ...@@ -164,9 +164,12 @@ static void clear_by_pieces_1 PROTO((rtx (*) (rtx, ...), enum machine_mode,
struct clear_by_pieces *)); struct clear_by_pieces *));
static int is_zeros_p PROTO((tree)); static int is_zeros_p PROTO((tree));
static int mostly_zeros_p PROTO((tree)); static int mostly_zeros_p PROTO((tree));
static void store_constructor_field PROTO((rtx, int, int, enum machine_mode,
tree, tree, int));
static void store_constructor PROTO((tree, rtx, int)); static void store_constructor PROTO((tree, rtx, int));
static rtx store_field PROTO((rtx, int, int, enum machine_mode, tree, static rtx store_field PROTO((rtx, int, int, enum machine_mode, tree,
enum machine_mode, int, int, int)); enum machine_mode, int, int, int));
static enum memory_use_mode PROTO((enum expand_modifier));
static tree save_noncopied_parts PROTO((tree, tree)); static tree save_noncopied_parts PROTO((tree, tree));
static tree init_noncopied_parts PROTO((tree, tree)); static tree init_noncopied_parts PROTO((tree, tree));
static int safe_from_p PROTO((rtx, tree, int)); static int safe_from_p PROTO((rtx, tree, int));
......
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