diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-12-01 18:42:49 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-12-01 18:42:49 +0000 |
commit | 357351e5a702dde74fbccf7ba88027e166b0111c (patch) | |
tree | 02b11de5e6c77cacd32adb6c82a5a850db7e4da8 /gcc/varasm.c | |
parent | 2203610302a49bd13423676ab292ddefc6e1219c (diff) | |
download | gcc-357351e5a702dde74fbccf7ba88027e166b0111c.zip gcc-357351e5a702dde74fbccf7ba88027e166b0111c.tar.gz gcc-357351e5a702dde74fbccf7ba88027e166b0111c.tar.bz2 |
c-decl.c (duplicate_decls, [...]): Remove trailing period from diagnostics.
* c-decl.c (duplicate_decls, parmlist_tags_warning): Remove
trailing period from diagnostics.
* c-lex.c (cb_file_change): Similarly.
* cppmacro.c (check_trad_stringification): Similarly.
* gcc.c (do_spec_1): Similarly.
* genattr.c (main): Similarly.
* genattrtab.c (main, operate_exp, make_length_attrs): Similarly.
* gencodes.c (main): Similarly.
* genconfig.c (main): Similarly.
* genconstants.c (main): Similarly.
* genemit.c (main): Similarly.
* genextract.c (main): Similarly.
* genopinit.c (main): Similarly.
* genoutput.c (main): Similarly.
* genpeep.c (main): Similarly.
* genrecog.c (main): Similarly.
* mips-tfile.c (add_file, error): Similarly.
* profile.c (init_branch_prob): Similarly.
* reload1.c (spill_failure): Similarly.
* stmt.c (parse_output_constraint): Similarly.
* varasm.c (assemble_variable): Similarly.
cp:
* class.c (finish_struct): Similarly.
* decl.c (check_tag_decl): Similarly.
* lex.c (cxx_set_yydebug): Similarly.
* typeck2.c (friendly_abort): Similarly.
java:
* expr.c (expand_byte_code): Similarly.
* jcf-parse.c (load_class, jcf_parse): Similarly.
* jcf-write.c (generate_classfile): Similarly.
* lex.c (java_lex): Similarly.
From-SVN: r47517
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 9737518..875430f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1597,7 +1597,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data) if (align > MAX_OFILE_ALIGNMENT) { warning_with_decl (decl, - "alignment of `%s' is greater than maximum object file alignment. Using %d.", + "alignment of `%s' is greater than maximum object file alignment. Using %d", MAX_OFILE_ALIGNMENT/BITS_PER_UNIT); align = MAX_OFILE_ALIGNMENT; } @@ -1648,7 +1648,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data) #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS) if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded) warning_with_decl - (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded); + (decl, "requested alignment for %s is greater than implemented alignment of %d",rounded); #endif asm_emit_uninitialised (decl, name, size, rounded); |