[Crosstoolchain-logs] [device-tree-compiler] 115/357: dtc: allow a label: in any dts context

Hector Oron zumbi at moszumanska.debian.org
Thu Dec 8 17:05:56 UTC 2016


This is an automated email from the git hooks/post-receive script.

zumbi pushed a commit to branch upstream/1.3.x
in repository device-tree-compiler.

commit ac6a5e26b4f2239d77eb4aa25383466833949006
Author: Milton Miller <miltonm at bga.com>
Date:   Sat Jul 7 01:18:50 2007 -0500

    dtc: allow a label: in any dts context
    
    Change the lexer to recognise a label in any context.  Place
    before other celldata and bytestrings to avoid the initial
    characters being stolen by other matches.
    
    A label is a character sequence starting with an alphabetic
    or underscore optinally followed by the same plus digits and
    terminating in a colon.
    
    The included terminating colon will prevent matching hex numbers.
    
    Signed-off-by: Milton Miller <miltonm at bga.com>
---
 dtc-lexer.l | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/dtc-lexer.l b/dtc-lexer.l
index 77ccd54..384f848 100644
--- a/dtc-lexer.l
+++ b/dtc-lexer.l
@@ -107,6 +107,16 @@ REFCHAR		({PROPCHAR}|{UNITCHAR}|[/@])
 			BEGIN(INITIAL);
 			return ';';
 		}
+
+<*>[a-zA-Z_][a-zA-Z0-9_]*:	{
+			yylloc.filenum = srcpos_filenum;
+			yylloc.first_line = yylineno;
+			DPRINT("Label: %s\n", yytext);
+			yylval.str = strdup(yytext);
+			yylval.str[yyleng-1] = '\0';
+			return DT_LABEL;
+		}
+
 <CELLDATA>[bodh]# {
 			yylloc.filenum = srcpos_filenum;
 			yylloc.first_line = yylineno;
@@ -189,15 +199,6 @@ REFCHAR		({PROPCHAR}|{UNITCHAR}|[/@])
 		}
 
 
-[a-zA-Z_][a-zA-Z0-9_]*:	{
-			yylloc.filenum = srcpos_filenum;
-			yylloc.first_line = yylineno;
-			DPRINT("Label: %s\n", yytext);
-			yylval.str = strdup(yytext);
-			yylval.str[yyleng-1] = '\0';
-			return DT_LABEL;
-		}
-
 <*>{WS}+	/* eat whitespace */
 
 <*>"/*"([^*]|\*+[^*/])*\*+"/"	{

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/crosstoolchain/device-tree-compiler.git



More information about the Crosstoolchain-logs mailing list