else if (complain & tf_error)
{
int savederrorcount = errorcount;
- if (!flag_permissive)
- global_dc->pedantic_errors = 1;
- auto s = make_temp_override (global_dc->dc_warn_system_headers, true);
- pedwarn (loc, OPT_Wnarrowing,
- "narrowing conversion of %qE from %qH to %qI",
- init, ftype, type);
+ permerror (loc, OPT_Wnarrowing,
+ "narrowing conversion of %qE from %qH to %qI",
+ init, ftype, type);
if (errorcount == savederrorcount)
ok = true;
- global_dc->pedantic_errors = flag_pedantic_errors;
}
}
extern bool permerror (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
extern bool permerror (rich_location *, const char *,
...) ATTRIBUTE_GCC_DIAG(2,3);
+extern bool permerror (location_t, int, const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
+extern bool permerror (rich_location *, int, const char *,
+ ...) ATTRIBUTE_GCC_DIAG(3,4);
extern void sorry (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2);
extern void sorry_at (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
extern void inform (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
update_effective_level_from_pragmas (diagnostic_context *context,
diagnostic_info *diagnostic)
{
- if (diagnostic->m_iinfo.m_allsyslocs && !context->dc_warn_system_headers)
- {
- /* Ignore the diagnostic if all the inlined locations are
- in system headers and -Wno-system-headers is in effect. */
- diagnostic->kind = DK_IGNORED;
- return DK_IGNORED;
- }
-
if (context->n_classification_history <= 0)
return DK_UNSPECIFIED;
diagnostic_report_diagnostic (diagnostic_context *context,
diagnostic_info *diagnostic)
{
- location_t location = diagnostic_location (diagnostic);
diagnostic_t orig_diag_kind = diagnostic->kind;
gcc_assert (context->m_output_format);
/* Give preference to being able to inhibit warnings, before they
get reclassified to something else. */
- bool report_warning_p = true;
- if (diagnostic->kind == DK_WARNING || diagnostic->kind == DK_PEDWARN)
- {
- if (context->dc_inhibit_warnings)
- return false;
- /* Remember the result of the overall system header warning setting
- but proceed to also check the inlining context. */
- report_warning_p = diagnostic_report_warnings_p (context, location);
- if (!report_warning_p && diagnostic->kind == DK_PEDWARN)
- return false;
- }
+ bool was_warning = (diagnostic->kind == DK_WARNING
+ || diagnostic->kind == DK_PEDWARN);
+ if (was_warning && context->dc_inhibit_warnings)
+ return false;
if (diagnostic->kind == DK_PEDWARN)
{
if (!diagnostic_enabled (context, diagnostic))
return false;
- if (!report_warning_p && diagnostic->m_iinfo.m_allsyslocs)
- /* Bail if the warning is not to be reported because all locations
- in the inlining stack (if there is one) are in system headers. */
+ if ((was_warning || diagnostic->kind == DK_WARNING)
+ && ((!context->dc_warn_system_headers
+ && diagnostic->m_iinfo.m_allsyslocs)
+ || context->dc_inhibit_warnings))
+ /* Bail if the warning is not to be reported because all locations in the
+ inlining stack (if there is one) are in system headers. */
return false;
if (diagnostic->kind != DK_NOTE && diagnostic->kind != DK_ICE)
{
diagnostic_set_info (&diagnostic, gmsgid, ap, richloc,
permissive_error_kind (global_dc));
- diagnostic.option_index = permissive_error_option (global_dc);
+ diagnostic.option_index = (opt != -1 ? opt
+ : permissive_error_option (global_dc));
}
else
{
return ret;
}
+/* Similar to the above, but controlled by a flag other than -fpermissive.
+ As above, an error by default or a warning with -fpermissive, but this
+ diagnostic can also be downgraded by -Wno-error=opt. */
+
+bool
+permerror (location_t location, int opt, const char *gmsgid, ...)
+{
+ auto_diagnostic_group d;
+ va_list ap;
+ va_start (ap, gmsgid);
+ rich_location richloc (line_table, location);
+ bool ret = diagnostic_impl (&richloc, NULL, opt, gmsgid, &ap, DK_PERMERROR);
+ va_end (ap);
+ return ret;
+}
+
+/* Same as "permerror" above, but at RICHLOC. */
+
+bool
+permerror (rich_location *richloc, int opt, const char *gmsgid, ...)
+{
+ gcc_assert (richloc);
+
+ auto_diagnostic_group d;
+ va_list ap;
+ va_start (ap, gmsgid);
+ bool ret = diagnostic_impl (richloc, NULL, opt, gmsgid, &ap, DK_PERMERROR);
+ va_end (ap);
+ return ret;
+}
+
/* A hard error: the code is definitely ill-formed, and an object file
will not be produced. */
void
-fnew-inheriting-ctors
-fnew-ttp-matching
-fno-nonansi-builtins -fnothrow-opt -fno-operator-names
--fno-optional-diags -fpermissive
+-fno-optional-diags
-fno-pretty-templates
-fno-rtti -fsized-deallocation
-ftemplate-backtrace-limit=@var{n}
@item Warning Options
@xref{Warning Options,,Options to Request or Suppress Warnings}.
@gccoptlist{-fsyntax-only -fmax-errors=@var{n} -Wpedantic
--pedantic-errors
+-pedantic-errors -fpermissive
-w -Wextra -Wall -Wabi=@var{n}
-Waddress -Wno-address-of-packed-member -Waggregate-return
-Walloc-size-larger-than=@var{byte-size} -Walloc-zero
issue. Currently, the only such diagnostic issued by G++ is the one for
a name having multiple meanings within a class.
-@opindex fpermissive
-@item -fpermissive
-Downgrade some diagnostics about nonconformant code from errors to
-warnings. Thus, using @option{-fpermissive} allows some
-nonconforming code to compile.
-
@opindex fno-pretty-templates
@opindex fpretty-templates
@item -fno-pretty-templates
-Wwrite-strings @r{(C++11 or later)}
}
+@opindex fpermissive
+@item -fpermissive
+Downgrade some required diagnostics about nonconformant code from
+errors to warnings. Thus, using @option{-fpermissive} allows some
+nonconforming code to compile. Some C++ diagnostics are controlled
+only by this flag, but it also downgrades some diagnostics that have
+their own flag:
+
+@gccoptlist{
+-Wnarrowing @r{(C++)}
+}
+
@opindex Wall
@opindex Wno-all
@item -Wall
--- /dev/null
+#pragma GCC system_header
+int i = { 2.4 }; // C++11 error: narrowing conversion
--- /dev/null
+// { dg-do compile { target c++11 } }
+
+// { dg-error "narrowing" "" { target *-*-* } 2 }
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-additional-options "-w" }
+
+// { dg-error "narrowing" "" { target *-*-* } 2 }
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-additional-options "-Wno-error" }
+
+// { dg-error "narrowing" "" { target *-*-* } 2 }
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-additional-options "-Wno-error=narrowing" }
+
+// No diagnostic.
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-fpermissive" }
+
+// No diagnostic.
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-fpermissive -Wsystem-headers" }
+
+// { dg-warning "narrowing" "" { target *-*-* } 2 }
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wno-narrowing" }
+
+// No diagnostic
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wno-error=narrowing -Wsystem-headers" }
+
+// { dg-warning "narrowing" "" { target *-*-* } 2 }
+#include "sys-narrow.h"
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wno-error=narrowing -w" }
+
+// No diagnostic
+int i = { 2.4 }; // C++11 error: narrowing conversion
+
--- /dev/null
+// { dg-do compile { target c++11 } }
+// { dg-options "-fpermissive -w" }
+
+// No diagnostic
+int i = { 2.4 }; // C++11 error: narrowing conversion
+
// { dg-do compile { target { c++11 && int32 } } }
-// { dg-options -w }
+// { dg-options "-fpermissive -w" }
template<typename T, T...> struct integer_sequence { };
template<typename T, T num>