From: Martin Liska Date: Wed, 15 Dec 2021 11:09:28 +0000 (+0100) Subject: c++: Fix warning word splitting [PR103713] X-Git-Tag: upstream/12.2.0~2700 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7527ddecef4721b3f4b00e8ad22d390b457c310b;p=platform%2Fupstream%2Fgcc.git c++: Fix warning word splitting [PR103713] PR c++/103713 gcc/cp/ChangeLog: * tree.c (maybe_warn_parm_abi): Fix warning word splitting. --- diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index f6f7927f..284fb5f 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;