diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 6dc2a6a..7efb826 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -7309,8 +7309,8 @@ declspecs_add_type (struct c_declspecs *specs, struct c_typespec spec) "declaration specifiers"); break; } - if (pedantic && !flag_isoc99 && !in_system_header) - pedwarn (input_location, OPT_Wlong_long, "ISO C90 does not support %<long long%>"); + pedwarn_c90 (input_location, OPT_Wlong_long, + "ISO C90 does not support %<long long%>"); specs->long_long_p = 1; break; } |