From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31433 invoked by alias); 22 Oct 2011 01:25:49 -0000 Received: (qmail 31411 invoked by uid 22791); 22 Oct 2011 01:25:48 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 22 Oct 2011 01:25:33 +0000 From: "manu at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/50810] c++0x-compat does not warn about narrowing conversions Date: Sat, 22 Oct 2011 01:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: manu at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-10/txt/msg02275.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50810 --- Comment #5 from Manuel L=C3=B3pez-Ib=C3=A1=C3=B1ez 2011-10-22 01:24:25 UTC --- (In reply to comment #4) > (In reply to comment #3) > > (detail: not sure about the 'if (!warn_narrowing) return;' at the begin= ning of > > check_narrowing: probably we don't want -Wno-narrowing to suppress the = warnings > > enabled of -Wc++0x-compat) >=20 > I think what you want is that -Wc++0x-compat enables -Wnarrowing independ= ently > of -std=3D, but still -Wc++0x-compat -Wno-narrowing should disable it. Se= e the > handling of Wlonglong in c-opts.c. So: >=20 > if (!ok) > { > if (cxx_dialect !=3D cxx98) > pedwarn (input_location, OPT_Wnarrowing, "narrowing conversion of= %qE " > "from %qT to %qT inside { }", init, ftype, type); > else > warning_at (input_location, OPT_Wnarrowing, "narrowing conversion= of > %qE " > "from %qT to %qT inside { }", init, ftype, type); > } >=20 You can even make this more compact by using emit_diagnostic: emit_diagnostic ((cxx_dialect !=3D cxx98) ? DK_PEDWARN : DK_WARNING, input_location, OPT_Wnarrowing, "narrowing conversion of %qE from %qT to %qT inside { }",= =20 init, ftype, type); The C FE has wrappers around something similar called pedwarn_c99, that is,= a pedwarn in C99, otherwise just a warning. You could add something similar to C++.