diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-07-12 16:44:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-07-12 16:44:41 +0000 |
commit | e4a2ac1af7dce092e8b7d5ba0910d16e1a99164a (patch) | |
tree | 1e22fd6d25c31385a68ea480c4b65e5fb7c72830 | |
parent | 20217ac1248ad3d2a3cc1ddd75b86468ee8fc97c (diff) | |
download | gcc-e4a2ac1af7dce092e8b7d5ba0910d16e1a99164a.zip gcc-e4a2ac1af7dce092e8b7d5ba0910d16e1a99164a.tar.gz gcc-e4a2ac1af7dce092e8b7d5ba0910d16e1a99164a.tar.bz2 |
* cpplex.c (is_macro_disabled): Use CPP_TRADITIONAL.
From-SVN: r34988
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cpplex.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4bb298..f11338b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2000-07-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + * cpplex.c (is_macro_disabled): Use CPP_TRADITIONAL. + * c-decl.c (set_current_function_name_declared, anon_aggr_type_p, lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED. diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 00e2ecb..58262ee 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -2069,7 +2069,7 @@ is_macro_disabled (pfile, expansion, token) if (next->type != CPP_OPEN_PAREN) { _cpp_push_token (pfile, next); - if (CPP_OPTION (pfile, warn_traditional)) + if (CPP_TRADITIONAL (pfile)) cpp_warning (pfile, "function macro %.*s must be used with arguments in traditional C", (int) token->val.node->length, token->val.node->name); |