diff options
author | Greg McGary <greg@mcgary.org> | 2000-08-24 20:31:35 +0000 |
---|---|---|
committer | Greg McGary <gkm@gcc.gnu.org> | 2000-08-24 20:31:35 +0000 |
commit | b6a1cbaeb19076fca9b0deb00138fedf0c8c36ff (patch) | |
tree | 598c21af74eb9deec6a463196f439a03d7a53b91 /gcc/config/mcore | |
parent | 2f26c11dbb2d0f1e37f16120c455147a00dff716 (diff) | |
download | gcc-b6a1cbaeb19076fca9b0deb00138fedf0c8c36ff.zip gcc-b6a1cbaeb19076fca9b0deb00138fedf0c8c36ff.tar.gz gcc-b6a1cbaeb19076fca9b0deb00138fedf0c8c36ff.tar.bz2 |
optabs.c (init_optabs): Initialize fixtab...
* optabs.c (init_optabs): Initialize fixtab, fixtrunctab, floattab,
and extendtab within their proper array boundaries.
* emit-rtl.c (init_emit_once): Pass `const_tiny_rtx' with bounds
for the entire array.
* config/arm/arm.c (arm_override_options): Use ARRAY_SIZE.
* config/alpha/alpha.c (alpha_lookup_xfloating_lib_func): Likewise.
* config/avr/avr.c (order_regs_for_local_alloc): Likewise.
* config/fr30/fr30.c (fr30_print_operand): Likewise.
* config/i386/dgux.c (output_options): Likewise.
* config/i386/dgux.h (ASM_FILE_START): Likewise.
* config/m88k/m88k.c (output_options): Likewise.
* config/m88k/m88k.h (ASM_FILE_START): Likewise.
* config/mcore/mcore.c (mcore_output_inline_const_forced,
layout_mcore_frame, handle_structs_in_regs): Likewise.
* config/mips/mips.c (output_block_move): Likewise.
* config/rs6000/rs6000.c (rs6000_override_options,
rs6000_file_start): Likewise.
* config/sparc/sparc.c (sparc_add_gc_roots): Likewise.
* fixinc/fixfixes.c (FIX_TABLE_CT): Likewise.
* fixinc/fixtests.c (TEST_TABLE_CT): Likewise.
* builtins.c (expand_builtin_setjmp): Likewise.
* expr.c (safe_from_p): Likewise.
* flow.c (life_analysis): Likewise.
* fold-const.c (size_int_type_wide): Likewise.
* gcc.c (translate_options, init_spec, set_spec, main): Likewise.
* genattrtab.c (make_length_attrs): Likewise.
* genopinit.c (gen_insn): Likewise.
* genrecog.c (NUM_KNOWN_PREDS, NUM_SPECIAL_MODE_PREDS): Likewise.
* global.c (global_alloc): Likewise.
* local-alloc.c (find_free_reg): Likewise.
* mips-tdump.c (print_symbol): Likewise.
* mips-tfile.c (parse_def, parse_input): Likewise.
* reload1.c (NUM_ELIMINABLE_REGS): Likewise.
* stmt.c (expand_nl_goto_receiver): Likewise.
* stor-layout.c (set_sizetype): Likewise.
* varasm.c (decode_reg_name): Likewise.
* toplev.c (decode_f_option, decode_W_option,
set_target_switch, print_switch_values): Likewise.
(NUM_ELEM): Remove macro.
(display_help, main): s/NUM_ELEM/ARRAY_SIZE/
From-SVN: r35949
Diffstat (limited to 'gcc/config/mcore')
-rw-r--r-- | gcc/config/mcore/mcore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c index 4622ade..8dbcb2b 100644 --- a/gcc/config/mcore/mcore.c +++ b/gcc/config/mcore/mcore.c @@ -1158,7 +1158,7 @@ mcore_output_inline_const_forced (insn, operands, mode) if (mcore_const_ok_for_inline (value)) return output_inline_const (SImode, operands); - for (i = 0; (unsigned) i < sizeof (part) / sizeof (part[0]); i++) + for (i = 0; (unsigned) i < ARRAY_SIZE (part); i++) { part[i].shift = 0; part[i].low = (value & 0x1F); @@ -1990,7 +1990,7 @@ layout_mcore_frame (infp) (1) run fast, (2) reduce instruction space, or (3) reduce stack space. */ - for (i = 0; i < sizeof (infp->growth) / sizeof (infp->growth[0]); i++) + for (i = 0; i < ARRAY_SIZE (infp->growth); i++) infp->growth[i] = 0; regarg = infp->reg_size + infp->arg_size; @@ -3139,7 +3139,7 @@ handle_structs_in_regs (mode, type, reg) } /* We assume here that NPARM_REGS == 6. The assert checks this. */ - assert (sizeof (arg_regs) / sizeof (arg_regs[0]) == 6); + assert (ARRAY_SIZE (arg_regs) == 6); rtvec = gen_rtvec (nregs, arg_regs[0], arg_regs[1], arg_regs[2], arg_regs[3], arg_regs[4], arg_regs[5]); |