public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-5997] c++: Fix warning word splitting [PR103713]
@ 2021-12-15 12:10 Martin Liska
  0 siblings, 0 replies; only message in thread
From: Martin Liska @ 2021-12-15 12:10 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:7527ddecef4721b3f4b00e8ad22d390b457c310b

commit r12-5997-g7527ddecef4721b3f4b00e8ad22d390b457c310b
Author: Martin Liska <mliska@suse.cz>
Date:   Wed Dec 15 12:09:28 2021 +0100

    c++: Fix warning word splitting [PR103713]
    
            PR c++/103713
    
    gcc/cp/ChangeLog:
    
            * tree.c (maybe_warn_parm_abi): Fix warning word splitting.

Diff:
---
 gcc/cp/tree.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c
index f6f7927f293..284fb5f4b2a 100644
--- a/gcc/cp/tree.c
+++ b/gcc/cp/tree.c
@@ -4371,8 +4371,9 @@ maybe_warn_parm_abi (tree t, location_t loc)
 			"the calling convention for %qT, which was "
 			"accidentally changed in 8.1", t);
       else
-	w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) accident"
-			"ally changes the calling convention for %qT", t);
+	w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) "
+			"accidentally changes the calling convention for %qT",
+			t);
       if (w)
 	inform (location_of (t), " declared here");
       return;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-15 12:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-15 12:10 [gcc r12-5997] c++: Fix warning word splitting [PR103713] Martin Liska

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).