(fix commit
b43d928)
* mark.c [WRAP_MARK_SOME && (MSWIN32 || MSWINCE) && __GNUC__]
(GC_mark_some): Use "-Wpedantic" instead of "-pedantic" (in pragma
GCC diagnostic) if GCC v7+.
|| (__clang_major__ == 3 && __clang_minor__ >= 3)
# pragma GCC diagnostic push
/* Suppress "taking the address of label is non-standard" warning. */
-# if defined(__clang__)
+# if defined(__clang__) || __GNUC__ >= 7
# pragma GCC diagnostic ignored "-Wpedantic"
# else
/* GCC before ~4.8 does not accept "-Wpedantic" quietly. */