From 5c7966bf11880ce5fce16f9ec006266bd0683490 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 5 May 2003 06:28:00 +0000 Subject: [PATCH] * ldlex.l: Accept C style comments in version scripts. --- ld/ChangeLog | 4 ++++ ld/ldlex.l | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index ced3178..404d98f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2003-05-05 Alan Modra + + * ldlex.l: Accept C style comments in version scripts. + 2003-04-28 H.J. Lu * ldlang.c (lang_process): Add the relax finalize pass. diff --git a/ld/ldlex.l b/ld/ldlex.l index 2eef45d..c9eb1af 100644 --- a/ld/ldlex.l +++ b/ld/ldlex.l @@ -144,7 +144,7 @@ V_IDENTIFIER [*?.$_a-zA-Z\[\]\-\!\^]([*?.$_a-zA-Z0-9\[\]\-\!\^]|::)* } } -"/*" { comment(); } +"/*" { comment(); } "-" { RTOKEN('-');} -- 2.7.4