From: Jeff Law Date: Fri, 15 Aug 1997 05:32:53 +0000 (-0600) Subject: c-lex.c (check_newline): Pass finput again to HANDLE_PRAGMA. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=881d7cb9d4eab9b2d69ad1cff98fa87786a7e09a;p=gcc.git c-lex.c (check_newline): Pass finput again to HANDLE_PRAGMA. * c-lex.c (check_newline): Pass finput again to HANDLE_PRAGMA. Bring over from the FSF. From-SVN: r14802 --- diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 586fc10356c..fd0dd90393a 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -560,7 +560,7 @@ check_newline () token = yylex (); if (token != IDENTIFIER) goto skipline; - if (HANDLE_PRAGMA (yylval.ttype)) + if (HANDLE_PRAGMA (finput, yylval.ttype)) { c = GETC (); return c;