diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-07-03 22:08:11 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-07-03 22:08:11 +0100 |
commit | ab532386bd67549000dbe8db91d5fa3bf56239c7 (patch) | |
tree | 9e35ca21fbfbb197d00f2ae30beb41c733d69f5f /gcc/config/stormy16 | |
parent | 9bce667ce5fcc889c3b3212085cf227381e09532 (diff) | |
download | gcc-ab532386bd67549000dbe8db91d5fa3bf56239c7.tar.gz |
bb-reorder.c, [...]: Avoid "." or "\n" at end of diagnostics and capital letters at start of diagnostics.
* bb-reorder.c, c-pch.c, c-pragma.c, c.opt, cfghooks.c, cfgloop.c,
cfgrtl.c, cgraphunit.c, config/c4x/c4x.c, config/cris/cris.c,
config/frv/frv.c, config/host-darwin.c, config/iq2000/iq2000.c,
config/lynx.h, config/m68k/m68k.c, config/pa/pa.c, config/sh/sh.h,
config/stormy16/stormy16.c, config/v850/v850.c,
config/vax/netbsd-elf.h, coverage.c, dwarf2out.c, emit-rtl.c,
except.c, gcc.c, tree-cfg.c, tree-eh.c, tree-ssa.c, xcoffout.c:
Avoid "." or "\n" at end of diagnostics and capital letters at
start of diagnostics.
* combine.c, cse.c: Don't translate dump file output.
* toplev.c (print_version): Only translate output if going to
stderr.
From-SVN: r101561
Diffstat (limited to 'gcc/config/stormy16')
-rw-r--r-- | gcc/config/stormy16/stormy16.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/stormy16/stormy16.c b/gcc/config/stormy16/stormy16.c index 9fec17762c9..68fd45057e8 100644 --- a/gcc/config/stormy16/stormy16.c +++ b/gcc/config/stormy16/stormy16.c @@ -494,7 +494,7 @@ xs_hi_general_operand (rtx x, enum machine_mode mode ATTRIBUTE_UNUSED) { if ((GET_CODE (x) == CONST_INT) && ((INTVAL (x) >= 32768) || (INTVAL (x) < -32768))) - error ("Constant halfword load operand out of range."); + error ("constant halfword load operand out of range"); return general_operand (x, mode); } @@ -504,7 +504,7 @@ xs_hi_nonmemory_operand (rtx x, enum machine_mode mode ATTRIBUTE_UNUSED) { if ((GET_CODE (x) == CONST_INT) && ((INTVAL (x) >= 32768) || (INTVAL (x) < -32768))) - error ("Constant arithmetic operand out of range."); + error ("constant arithmetic operand out of range"); return nonmemory_operand (x, mode); } @@ -1107,7 +1107,7 @@ xstormy16_expand_prologue (void) layout = xstormy16_compute_stack_layout (); if (layout.locals_size >= 32768) - error ("Local variable memory requirements exceed capacity."); + error ("local variable memory requirements exceed capacity"); /* Save the argument registers if necessary. */ if (layout.stdarg_save_size) @@ -2306,7 +2306,7 @@ xstormy16_handle_below100_attribute (tree *node, if (! (TREE_PUBLIC (*node) || TREE_STATIC (*node))) { warning (OPT_Wattributes, "__BELOW100__ attribute not allowed " - "with auto storage class."); + "with auto storage class"); *no_add_attrs = true; } } |