From 23cd46a1dfc8f4ddf072ca8a2dd1435118c5013b Mon Sep 17 00:00:00 2001 From: Joseph Myers <joseph@codesourcery.com> Date: Thu, 8 Oct 2009 22:41:42 +0100 Subject: [PATCH] * gcc.c (main): Remove trailing "." from diagnostics. From-SVN: r152578 --- gcc/ChangeLog | 4 ++++ gcc/gcc.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 370fcac7bf9b..c2635dcb0e3d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-10-08 Joseph Myers <joseph@codesourcery.com> + + * gcc.c (main): Remove trailing "." from diagnostics. + 2009-10-08 Cary Coutant <ccoutant@google.com> Add support for debugging with ICF (Identical Code Folding). diff --git a/gcc/gcc.c b/gcc/gcc.c index 1891adb45bc6..52fe2277b826 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -7529,12 +7529,12 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n" "liblto_plugin.so", X_OK, false); if (!linker_plugin_file_spec) - fatal ("-use-linker-plugin, but liblto_plugin.so not found."); + fatal ("-use-linker-plugin, but liblto_plugin.so not found"); lto_libgcc_spec = find_a_file (&startfile_prefixes, "libgcc.a", R_OK, true); if (!lto_libgcc_spec) - fatal ("could not find libgcc.a."); + fatal ("could not find libgcc.a"); } lto_gcc_spec = argv[0]; -- GitLab