1 %option noinput nounput
4 /* Copyright 2001, 2003, 2005, 2007 Free Software Foundation, Inc.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GLD; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
36 static int yywrap (void) { return 1; }
39 extern int yylex (void);
51 yylval.s = malloc (yyleng - 1);
52 memcpy (yylval.s, yytext + 1, yyleng - 2);
53 yylval.s[yyleng - 2] = '\0';
58 yylval.i = strtol(yytext,0,16);
63 yylval.i = atoi(yytext);
68 "bits" { yylval.i =1 ;return UNIT;}
69 "bit" { yylval.i = 1; return UNIT;}
70 "bytes" { yylval.i= 8; return UNIT;}
71 "byte" { yylval.i = 8; return UNIT;}
73 "int" { yylval.s = "INT"; return TYPE;}
74 "barray" { yylval.s = "BARRAY"; return TYPE;}
75 "chars" { yylval.s = "CHARS"; return TYPE;}
76 "variable" { yylval.i = 0; return NUMBER;}
77 "counted" { yylval.i = -4; return NUMBER;}
78 "addrsize" { yylval.i = -2; return NUMBER; }
79 "segsize" { yylval.i = -1; return NUMBER; }
80 "cond" { return COND;}
81 "repeat" { return REPEAT;}