diff options
Diffstat (limited to 'gcc/sched-rgn.c')
-rw-r--r-- | gcc/sched-rgn.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c index 83688b3c9c4..d4001300a4b 100644 --- a/gcc/sched-rgn.c +++ b/gcc/sched-rgn.c @@ -67,6 +67,13 @@ along with GCC; see the file COPYING3. If not see #include "pretty-print.h" #include "print-rtl.h" +/* Disable warnings about quoting issues in the pp_xxx calls below + that (intentionally) don't follow GCC diagnostic conventions. */ +#if __GNUC__ >= 10 +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wformat-diag" +#endif + #ifdef INSN_SCHEDULING /* Some accessor macros for h_i_d members only used within this file. */ @@ -3947,3 +3954,7 @@ make_pass_sched_fusion (gcc::context *ctxt) { return new pass_sched_fusion (ctxt); } + +#if __GNUC__ >= 10 +# pragma GCC diagnostic pop +#endif |