From f3c90fd6f03dc33baddb2dfe40a664bb9d7a5e8b Mon Sep 17 00:00:00 2001 From: Brendan Kehoe Date: Thu, 14 Sep 1995 16:46:14 -0400 Subject: [PATCH] (handle_sysv_pragma): Deal with getting a comma from yylex. From-SVN: r10350 --- gcc/cp/lex.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index a99e9af0933..21885702a60 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -4652,6 +4652,9 @@ handle_sysv_pragma () case ')': handle_pragma_token (")", NULL_TREE); break; + case ',': + handle_pragma_token (",", NULL_TREE); + break; case '=': handle_pragma_token ("=", NULL_TREE); break; -- 2.30.2