Commit f3c90fd6 by Brendan Kehoe Committed by Richard Kenner

(handle_sysv_pragma): Deal with getting a comma from yylex.

From-SVN: r10350
parent ea8262b0
...@@ -4652,6 +4652,9 @@ handle_sysv_pragma () ...@@ -4652,6 +4652,9 @@ handle_sysv_pragma ()
case ')': case ')':
handle_pragma_token (")", NULL_TREE); handle_pragma_token (")", NULL_TREE);
break; break;
case ',':
handle_pragma_token (",", NULL_TREE);
break;
case '=': case '=':
handle_pragma_token ("=", NULL_TREE); handle_pragma_token ("=", NULL_TREE);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment