From 423b04b06f9c845e907bd3ce0915c065b9e27cdb Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sun, 27 Mar 1994 19:42:26 +0000 Subject: [PATCH] Back out this patch: (attrib): Use `identifier' instead of `IDENTIFIER' since names that are (e.g.) typedef names are still OK. From-SVN: r6912 --- gcc/c-parse.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/c-parse.in b/gcc/c-parse.in index d01018dbc6a..36cfa2addb3 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -1062,14 +1062,14 @@ attribute_list ; attrib - : identifier + : IDENTIFIER { if (strcmp (IDENTIFIER_POINTER ($1), "packed") && strcmp (IDENTIFIER_POINTER ($1), "noreturn")) warning ("`%s' attribute directive ignored", IDENTIFIER_POINTER ($1)); $$ = $1; } | TYPE_QUAL - | identifier '(' identifier ')' + | IDENTIFIER '(' IDENTIFIER ')' { /* If not "mode (m)" or "aligned", then issue warning. If "aligned", this will later produce an error in decl_attributes since an identifier is not a valid constant, but we want to give @@ -1084,7 +1084,7 @@ attrib } else $$ = tree_cons ($1, $3, NULL_TREE); } - | identifier '(' expr_no_commas ')' + | IDENTIFIER '(' expr_no_commas ')' { /* if not "aligned(n)", then issue warning */ if (strcmp (IDENTIFIER_POINTER ($1), "aligned") != 0) { @@ -1094,7 +1094,7 @@ attrib } else $$ = tree_cons ($1, $3, NULL_TREE); } - | identifier '(' identifier ',' expr_no_commas ',' expr_no_commas ')' + | IDENTIFIER '(' IDENTIFIER ',' expr_no_commas ',' expr_no_commas ')' { /* if not "format(...)", then issue warning */ if (strcmp (IDENTIFIER_POINTER ($1), "format") != 0) { @@ -1108,7 +1108,7 @@ attrib tree_cons ($5, $7, NULL_TREE), NULL_TREE), NULL_TREE); } - | identifier '(' STRING ')' + | IDENTIFIER '(' STRING ')' { /* If not "section (name)", then issue warning. */ if (strcmp (IDENTIFIER_POINTER ($1), "section") != 0) {