فهرست منبع

fix:[kstdio]Disable "-Wimplicit-fallthrough" below GNUC V7 (#9459)

fix:Disable "-Wimplicit-fallthrough" below GNUC V7
wdfk-prog 7 ماه پیش
والد
کامیت
5ec20c4289
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/klibc/kstdio.c

+ 1 - 1
src/klibc/kstdio.c

@@ -287,7 +287,7 @@ static char *print_number(char *buf,
     return buf;
 }
 
-#if defined(__GNUC__) && !defined(__ARMCC_VERSION) /* GCC */
+#if defined(__GNUC__) && (__GNUC__ >= 7) && !defined(__ARMCC_VERSION) /* GCC */
 #pragma GCC diagnostic push
 /* ignore warning: this statement may fall through */
 #pragma GCC diagnostic ignored "-Wimplicit-fallthrough"