--- gcc/config/dsp16xx/dsp16xx.c 2018/04/24 18:21:10 1.1 +++ gcc/config/dsp16xx/dsp16xx.c 2018/04/24 18:28:28 1.1.1.2 @@ -1,5 +1,5 @@ /* Subroutines for assembler code output on the DSP1610. - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1995 Free Software Foundation, Inc. Contributed by Michael Collison (collison@world.std.com). This file is part of GNU CC. @@ -16,7 +16,8 @@ GNU General Public License for more deta You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ /* Some output-actions in dsp1600.md need these. */ #include @@ -260,7 +261,7 @@ int c; return SLOW_MEM_LOAD_REGS; default: - fatal ("Illegal register class letter %c", c); + fatal ("Invalid register class letter %c", c); return NO_REGS; } } @@ -396,7 +397,7 @@ enum reg_class class; return class; case YL_REG: - /* Register 'yl' is illegal for QImode, so we should never + /* Register 'yl' is invalid for QImode, so we should never see it. */ fatal ("YL found in limit_reload_class"); @@ -1472,7 +1473,7 @@ rtx operands[]; else if (GET_CODE (XEXP(addr,1)) == CONST_INT) offset = INTVAL(XEXP(addr,1)) + 1; else - fatal ("Illegal addressing mode"); + fatal ("Invalid addressing mode"); fprintf (asm_out_file, "\t*(%d)=%s\n", offset + 31, reg_names[REGNO(operands[1]) + 1]); } @@ -1674,10 +1675,10 @@ rtx addr; if (offset >= -31 && offset <= 0) offset = 31 + offset; else - fatal ("Illegal offset in ybase addressing"); + fatal ("Invalid offset in ybase addressing"); } else - fatal ("Illegal register in ybase addresing"); + fatal ("Invalid register in ybase addressing"); fprintf (file, "*(%d)", offset); break; @@ -1849,7 +1850,7 @@ int shift_amount; shift_asm_ptr_first = lshift_right_asm_first; } else - fatal ("Illegal shift operator in emit_1600_core_shift"); + fatal ("Invalid shift operator in emit_1600_core_shift"); while (shift_amount != 0) { @@ -2128,7 +2129,7 @@ gen_tst_reg (x) else if (mode == HImode) emit_insn (gen_rtx (SET, VOIDmode, cc0_rtx, x)); else - fatal ("Illegal mode for gen_tst_reg"); + fatal ("Invalid mode for gen_tst_reg"); return cc0_rtx; } @@ -2199,7 +2200,7 @@ gen_compare_reg (code, x, y) force_reg(HImode,y)))); } else - fatal ("Illegal mode for integer comparison in gen_compare_reg"); + fatal ("Invalid mode for integer comparison in gen_compare_reg"); return cc0_rtx; }