diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2015-04-28 20:32:06 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2015-04-28 21:55:28 +0200 |
commit | a13eab064f93565e9af407a8a9e84f8558acd27e (patch) | |
tree | 8db840ba681477ccee31d5a7abc142bf2dc5832c /ld/ldlex.l | |
parent | cea6e4f13a8df0eddbcdf643a4fc4727cbf770a7 (diff) | |
download | gdb-a13eab064f93565e9af407a8a9e84f8558acd27e.zip gdb-a13eab064f93565e9af407a8a9e84f8558acd27e.tar.gz gdb-a13eab064f93565e9af407a8a9e84f8558acd27e.tar.bz2 |
Eat newlines inside INPUT statements in linker scripts
ld/
PR ld/18344
* ldlex.l (INPUTLIST): Increment lineno on newline.
Diffstat (limited to 'ld/ldlex.l')
-rw-r--r-- | ld/ldlex.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -450,7 +450,7 @@ V_IDENTIFIER [*?.$_a-zA-Z\[\]\-\!\^\\]([*?.$_a-zA-Z0-9\[\]\-\!\^\\]|::)* return *yytext; } -<VERS_START,VERS_NODE,VERS_SCRIPT>[\n] { lineno++; } +<VERS_START,VERS_NODE,VERS_SCRIPT,INPUTLIST>[\n] { lineno++; } <VERS_START,VERS_NODE,VERS_SCRIPT>#.* { /* Eat up comments */ } |