From: Richard Kenner Date: Fri, 20 Oct 2000 20:49:27 +0000 (-0400) Subject: gcse.c (set_hash_table_size): Now unsigned. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=948068e2ed9b6f34dc92cff5b6e846406f4b3a7e;p=gcc.git gcse.c (set_hash_table_size): Now unsigned. * gcse.c (set_hash_table_size): Now unsigned. * sdbout.c (template_name_p): Add "const" to avoid warnings. (sdbout_record_type_name, plain_type_1, sdbout_symbol): Likewise. (sdbout_one_type, sdbout_parms, sdbout_reg_parms): Likewise. (sdbout_end_epilogue): Remove variable NAME. * system.h (getopt): Add default definition. * config/alpha/alpha.c (print_operand): Don't continue processing after issuing error. (summarize_insn): Avoid use of UL in constant. From-SVN: r36978 --- diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 87455423811..a1d1b10b303 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -3794,7 +3794,7 @@ print_operand (file, x, code) if (GET_RTX_CLASS (c) != '<') output_operand_lossage ("invalid %%C value"); - if (code == 'D') + else if (code == 'D') c = reverse_condition (c); else if (code == 'c') c = swap_condition (c); @@ -5220,7 +5220,7 @@ summarize_insn (x, sum, set) case REG: { int regno = REGNO (x); - unsigned long mask = 1UL << (regno % 32); + unsigned long mask = ((unsigned long) 1) << (regno % 32); if (regno == 31 || regno == 63) break;