aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1997-08-15 05:32:53 +0000
committerJeffrey A Law <law@cygnus.com>1997-08-15 05:32:53 +0000
commit287d095c116ea47e34ca2445948ba8d4cbd56903 (patch)
tree642b6ac5a0495a56e016240062e68f87720edc45
parent5b0aa3e0f40e4386c6cc77a2ae8f08b7695f577f (diff)
* c-lex.c (check_newline): Pass finput again to HANDLE_PRAGMA.
Bring over from the FSF. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@14802 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/c-lex.c2
1 files changed, 1 insertions, 1 deletions
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;