*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / ada-lex.l
CommitLineData
14f9c5c9 1/* FLEX lexer for Ada expressions, for GDB.
4c4b4cd2 2 Copyright (C) 1994, 1997, 1998, 2000, 2001, 2002, 2003
14f9c5c9
AS
3 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
197e01b6
EZ
19Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
14f9c5c9
AS
21
22/*----------------------------------------------------------------------*/
23
24/* The converted version of this file is to be included in ada-exp.y, */
25/* the Ada parser for gdb. The function yylex obtains characters from */
26/* the global pointer lexptr. It returns a syntactic category for */
27/* each successive token and places a semantic value into yylval */
28/* (ada-lval), defined by the parser. */
29
14f9c5c9
AS
30DIG [0-9]
31NUM10 ({DIG}({DIG}|_)*)
32HEXDIG [0-9a-f]
33NUM16 ({HEXDIG}({HEXDIG}|_)*)
34OCTDIG [0-7]
35LETTER [a-z_]
36ID ({LETTER}({LETTER}|{DIG})*|"<"{LETTER}({LETTER}|{DIG})*">")
37WHITE [ \t\n]
38TICK ("'"{WHITE}*)
39GRAPHIC [a-z0-9 #&'()*+,-./:;<>=_|!$%?@\[\]\\^`{}~]
40OPER ([-+*/=<>&]|"<="|">="|"**"|"/="|"and"|"or"|"xor"|"not"|"mod"|"rem"|"abs")
41
42EXP (e[+-]{NUM10})
43POSEXP (e"+"?{NUM10})
44
45%{
4c4b4cd2 46
14f9c5c9
AS
47#define NUMERAL_WIDTH 256
48#define LONGEST_SIGN ((ULONGEST) 1 << (sizeof(LONGEST) * HOST_CHAR_BIT - 1))
49
4c4b4cd2
PH
50/* Temporary staging for numeric literals. */
51static char numbuf[NUMERAL_WIDTH];
52 static void canonicalizeNumeral (char *s1, const char *);
52ce6436 53static struct stoken processString (const char*, int);
4c4b4cd2
PH
54static int processInt (const char *, const char *, const char *);
55static int processReal (const char *);
52ce6436 56static struct stoken processId (const char *, int);
4c4b4cd2
PH
57static int processAttribute (const char *);
58static int find_dot_all (const char *);
14f9c5c9
AS
59
60#undef YY_DECL
4c4b4cd2 61#define YY_DECL static int yylex ( void )
14f9c5c9
AS
62
63#undef YY_INPUT
64#define YY_INPUT(BUF, RESULT, MAX_SIZE) \
65 if ( *lexptr == '\000' ) \
66 (RESULT) = YY_NULL; \
67 else \
68 { \
69 *(BUF) = *lexptr; \
70 (RESULT) = 1; \
71 lexptr += 1; \
72 }
73
4c4b4cd2 74static int find_dot_all (const char *);
14f9c5c9
AS
75
76%}
77
7dc1ef8d
PH
78%option case-insensitive interactive nodefault
79
52ce6436 80%s BEFORE_QUAL_QUOTE
14f9c5c9
AS
81
82%%
83
84{WHITE} { }
85
86"--".* { yyterminate(); }
87
4c4b4cd2
PH
88{NUM10}{POSEXP} {
89 canonicalizeNumeral (numbuf, yytext);
14f9c5c9
AS
90 return processInt (NULL, numbuf, strrchr(numbuf, 'e')+1);
91 }
92
4c4b4cd2
PH
93{NUM10} {
94 canonicalizeNumeral (numbuf, yytext);
14f9c5c9
AS
95 return processInt (NULL, numbuf, NULL);
96 }
97
98{NUM10}"#"{HEXDIG}({HEXDIG}|_)*"#"{POSEXP} {
99 canonicalizeNumeral (numbuf, yytext);
100 return processInt (numbuf,
4c4b4cd2 101 strchr (numbuf, '#') + 1,
14f9c5c9
AS
102 strrchr(numbuf, '#') + 1);
103 }
104
105{NUM10}"#"{HEXDIG}({HEXDIG}|_)*"#" {
106 canonicalizeNumeral (numbuf, yytext);
107 return processInt (numbuf, strchr (numbuf, '#') + 1, NULL);
108 }
109
110"0x"{HEXDIG}+ {
111 canonicalizeNumeral (numbuf, yytext+2);
112 return processInt ("16#", numbuf, NULL);
113 }
114
115
116{NUM10}"."{NUM10}{EXP} {
4c4b4cd2 117 canonicalizeNumeral (numbuf, yytext);
14f9c5c9
AS
118 return processReal (numbuf);
119 }
120
121{NUM10}"."{NUM10} {
4c4b4cd2 122 canonicalizeNumeral (numbuf, yytext);
14f9c5c9
AS
123 return processReal (numbuf);
124 }
125
126{NUM10}"#"{NUM16}"."{NUM16}"#"{EXP} {
127 error ("Based real literals not implemented yet.");
128 }
129
130{NUM10}"#"{NUM16}"."{NUM16}"#" {
131 error ("Based real literals not implemented yet.");
132 }
133
134<INITIAL>"'"({GRAPHIC}|\")"'" {
72d5681a 135 yylval.typed_val.type = type_char ();
14f9c5c9
AS
136 yylval.typed_val.val = yytext[1];
137 return CHARLIT;
138 }
139
140<INITIAL>"'[\""{HEXDIG}{2}"\"]'" {
141 int v;
72d5681a 142 yylval.typed_val.type = type_char ();
14f9c5c9
AS
143 sscanf (yytext+3, "%2x", &v);
144 yylval.typed_val.val = v;
145 return CHARLIT;
146 }
147
52ce6436
PH
148\"({GRAPHIC}|"[\""({HEXDIG}{2}|\")"\"]")*\" {
149 yylval.sval = processString (yytext+1, yyleng-2);
14f9c5c9
AS
150 return STRING;
151 }
152
52ce6436
PH
153\" {
154 error ("ill-formed or non-terminated string literal");
14f9c5c9
AS
155 }
156
14f9c5c9 157
4c4b4cd2
PH
158if {
159 while (*lexptr != 'i' && *lexptr != 'I')
160 lexptr -= 1;
161 yyrestart(NULL);
14f9c5c9
AS
162 return 0;
163 }
164
165 /* ADA KEYWORDS */
166
167abs { return ABS; }
168and { return _AND_; }
169else { return ELSE; }
170in { return IN; }
171mod { return MOD; }
172new { return NEW; }
173not { return NOT; }
174null { return NULL_PTR; }
175or { return OR; }
52ce6436 176others { return OTHERS; }
14f9c5c9
AS
177rem { return REM; }
178then { return THEN; }
179xor { return XOR; }
180
181 /* ATTRIBUTES */
182
183{TICK}[a-zA-Z][a-zA-Z]+ { return processAttribute (yytext+1); }
184
185 /* PUNCTUATION */
186
187"=>" { return ARROW; }
188".." { return DOTDOT; }
189"**" { return STARSTAR; }
190":=" { return ASSIGN; }
191"/=" { return NOTEQUAL; }
192"<=" { return LEQ; }
193">=" { return GEQ; }
194
195<BEFORE_QUAL_QUOTE>"'" { BEGIN INITIAL; return '\''; }
196
197[-&*+./:<>=|;\[\]] { return yytext[0]; }
198
199"," { if (paren_depth == 0 && comma_terminates)
200 {
201 lexptr -= 1;
202 yyrestart(NULL);
203 return 0;
204 }
4c4b4cd2 205 else
14f9c5c9
AS
206 return ',';
207 }
208
209"(" { paren_depth += 1; return '('; }
4c4b4cd2 210")" { if (paren_depth == 0)
14f9c5c9
AS
211 {
212 lexptr -= 1;
213 yyrestart(NULL);
214 return 0;
215 }
4c4b4cd2 216 else
14f9c5c9 217 {
4c4b4cd2 218 paren_depth -= 1;
14f9c5c9
AS
219 return ')';
220 }
221 }
222
223"."{WHITE}*all { return DOT_ALL; }
224
4c4b4cd2 225"."{WHITE}*{ID} {
52ce6436 226 yylval.sval = processId (yytext+1, yyleng-1);
4c4b4cd2 227 return DOT_ID;
14f9c5c9
AS
228 }
229
4c4b4cd2 230{ID}({WHITE}*"."{WHITE}*({ID}|\"{OPER}\"))*(" "*"'")? {
14f9c5c9 231 int all_posn = find_dot_all (yytext);
14f9c5c9 232
4c4b4cd2 233 if (all_posn == -1 && yytext[yyleng-1] == '\'')
14f9c5c9 234 {
52ce6436
PH
235 BEGIN BEFORE_QUAL_QUOTE;
236 yyless (yyleng-1);
14f9c5c9 237 }
52ce6436 238 else if (all_posn >= 0)
14f9c5c9 239 yyless (all_posn);
52ce6436
PH
240 yylval.sval = processId (yytext, yyleng);
241 return NAME;
242 }
14f9c5c9 243
14f9c5c9 244
52ce6436 245 /* GDB EXPRESSION CONSTRUCTS */
14f9c5c9
AS
246
247"'"[^']+"'"{WHITE}*:: {
52ce6436
PH
248 yyless (yyleng - 2);
249 yylval.sval = processId (yytext, yyleng);
250 return NAME;
14f9c5c9
AS
251 }
252
52ce6436 253"::" { return COLONCOLON; }
14f9c5c9
AS
254
255[{}@] { return yytext[0]; }
256
14f9c5c9
AS
257 /* REGISTERS AND GDB CONVENIENCE VARIABLES */
258
4c4b4cd2 259"$"({LETTER}|{DIG}|"$")* {
14f9c5c9
AS
260 yylval.sval.ptr = yytext;
261 yylval.sval.length = yyleng;
4c4b4cd2 262 return SPECIAL_VARIABLE;
14f9c5c9
AS
263 }
264
265 /* CATCH-ALL ERROR CASE */
266
267. { error ("Invalid character '%s' in expression.", yytext); }
268%%
269
270#include <ctype.h>
19c1ef65 271#include "gdb_string.h"
14f9c5c9 272
52ce6436
PH
273/* Initialize the lexer for processing new expression. */
274
14f9c5c9 275void
4c4b4cd2 276lexer_init (FILE *inp)
14f9c5c9
AS
277{
278 BEGIN INITIAL;
279 yyrestart (inp);
280}
281
282
4c4b4cd2 283/* Copy S2 to S1, removing all underscores, and downcasing all letters. */
14f9c5c9
AS
284
285static void
4c4b4cd2 286canonicalizeNumeral (char *s1, const char *s2)
14f9c5c9 287{
4c4b4cd2 288 for (; *s2 != '\000'; s2 += 1)
14f9c5c9
AS
289 {
290 if (*s2 != '_')
291 {
292 *s1 = tolower(*s2);
293 s1 += 1;
294 }
295 }
296 s1[0] = '\000';
297}
298
299#define HIGH_BYTE_POSN ((sizeof (ULONGEST) - 1) * HOST_CHAR_BIT)
300
4c4b4cd2 301/* True (non-zero) iff DIGIT is a valid digit in radix BASE,
14f9c5c9
AS
302 where 2 <= BASE <= 16. */
303
304static int
4c4b4cd2 305is_digit_in_base (unsigned char digit, int base)
14f9c5c9
AS
306{
307 if (!isxdigit (digit))
308 return 0;
309 if (base <= 10)
310 return (isdigit (digit) && digit < base + '0');
4c4b4cd2 311 else
14f9c5c9
AS
312 return (isdigit (digit) || tolower (digit) < base - 10 + 'a');
313}
314
315static int
4c4b4cd2 316digit_to_int (unsigned char c)
14f9c5c9
AS
317{
318 if (isdigit (c))
319 return c - '0';
320 else
321 return tolower (c) - 'a' + 10;
322}
323
4c4b4cd2 324/* As for strtoul, but for ULONGEST results. */
52ce6436 325
14f9c5c9 326ULONGEST
4c4b4cd2 327strtoulst (const char *num, const char **trailer, int base)
14f9c5c9
AS
328{
329 unsigned int high_part;
330 ULONGEST result;
331 int i;
332 unsigned char lim;
333
334 if (base < 2 || base > 16)
335 {
336 errno = EINVAL;
337 return 0;
338 }
339 lim = base - 1 + '0';
340
341 result = high_part = 0;
342 for (i = 0; is_digit_in_base (num[i], base); i += 1)
343 {
344 result = result*base + digit_to_int (num[i]);
345 high_part = high_part*base + (unsigned int) (result >> HIGH_BYTE_POSN);
346 result &= ((ULONGEST) 1 << HIGH_BYTE_POSN) - 1;
4c4b4cd2 347 if (high_part > 0xff)
14f9c5c9
AS
348 {
349 errno = ERANGE;
350 result = high_part = 0;
351 break;
352 }
353 }
354
355 if (trailer != NULL)
356 *trailer = &num[i];
357
358 return result + ((ULONGEST) high_part << HIGH_BYTE_POSN);
359}
360
14f9c5c9
AS
361/* Interprets the prefix of NUM that consists of digits of the given BASE
362 as an integer of that BASE, with the string EXP as an exponent.
363 Puts value in yylval, and returns INT, if the string is valid. Causes
4c4b4cd2 364 an error if the number is improperly formated. BASE, if NULL, defaults
52ce6436
PH
365 to "10", and EXP to "1". The EXP does not contain a leading 'e' or 'E'.
366 */
14f9c5c9
AS
367
368static int
4c4b4cd2 369processInt (const char *base0, const char *num0, const char *exp0)
14f9c5c9
AS
370{
371 ULONGEST result;
372 long exp;
373 int base;
374
4c4b4cd2 375 char *trailer;
14f9c5c9
AS
376
377 if (base0 == NULL)
378 base = 10;
379 else
4c4b4cd2
PH
380 {
381 base = strtol (base0, (char **) NULL, 10);
14f9c5c9
AS
382 if (base < 2 || base > 16)
383 error ("Invalid base: %d.", base);
384 }
385
386 if (exp0 == NULL)
387 exp = 0;
388 else
4c4b4cd2 389 exp = strtol(exp0, (char **) NULL, 10);
14f9c5c9
AS
390
391 errno = 0;
4c4b4cd2 392 result = strtoulst (num0, (const char **) &trailer, base);
14f9c5c9
AS
393 if (errno == ERANGE)
394 error ("Integer literal out of range");
395 if (isxdigit(*trailer))
396 error ("Invalid digit `%c' in based literal", *trailer);
397
4c4b4cd2 398 while (exp > 0)
14f9c5c9
AS
399 {
400 if (result > (ULONG_MAX / base))
401 error ("Integer literal out of range");
402 result *= base;
403 exp -= 1;
404 }
4c4b4cd2 405
14f9c5c9 406 if ((result >> (TARGET_INT_BIT-1)) == 0)
72d5681a 407 yylval.typed_val.type = type_int ();
14f9c5c9 408 else if ((result >> (TARGET_LONG_BIT-1)) == 0)
72d5681a 409 yylval.typed_val.type = type_long ();
14f9c5c9
AS
410 else if (((result >> (TARGET_LONG_BIT-1)) >> 1) == 0)
411 {
412 /* We have a number representable as an unsigned integer quantity.
4c4b4cd2 413 For consistency with the C treatment, we will treat it as an
14f9c5c9 414 anonymous modular (unsigned) quantity. Alas, the types are such
4c4b4cd2 415 that we need to store .val as a signed quantity. Sorry
14f9c5c9
AS
416 for the mess, but C doesn't officially guarantee that a simple
417 assignment does the trick (no, it doesn't; read the reference manual).
418 */
419 yylval.typed_val.type = builtin_type_unsigned_long;
420 if (result & LONGEST_SIGN)
4c4b4cd2
PH
421 yylval.typed_val.val =
422 (LONGEST) (result & ~LONGEST_SIGN)
14f9c5c9
AS
423 - (LONGEST_SIGN>>1) - (LONGEST_SIGN>>1);
424 else
425 yylval.typed_val.val = (LONGEST) result;
426 return INT;
427 }
4c4b4cd2 428 else
72d5681a 429 yylval.typed_val.type = type_long_long ();
14f9c5c9
AS
430
431 yylval.typed_val.val = (LONGEST) result;
432 return INT;
433}
434
4c4b4cd2
PH
435#if defined (PRINTF_HAS_LONG_DOUBLE)
436# undef PRINTF_HAS_LONG_DOUBLE
437# define PRINTF_HAS_LONG_DOUBLE 1
438#else
439# define PRINTF_HAS_LONG_DOUBLE 0
440#endif
441
14f9c5c9 442static int
4c4b4cd2 443processReal (const char *num0)
14f9c5c9 444{
4c4b4cd2
PH
445#if defined (PRINTF_HAS_LONG_DOUBLE)
446 if (sizeof (DOUBLEST) > sizeof (double))
447 sscanf (num0, "%Lg", &yylval.typed_val_float.dval);
14f9c5c9 448 else
4c4b4cd2 449#endif
14f9c5c9 450 {
14f9c5c9
AS
451 double temp;
452 sscanf (num0, "%lg", &temp);
453 yylval.typed_val_float.dval = temp;
14f9c5c9
AS
454 }
455
72d5681a 456 yylval.typed_val_float.type = type_float ();
14f9c5c9 457 if (sizeof(DOUBLEST) >= TARGET_DOUBLE_BIT / TARGET_CHAR_BIT)
72d5681a 458 yylval.typed_val_float.type = type_double ();
14f9c5c9 459 if (sizeof(DOUBLEST) >= TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT)
72d5681a 460 yylval.typed_val_float.type = type_long_double ();
14f9c5c9
AS
461
462 return FLOAT;
463}
464
52ce6436
PH
465
466/* Store a canonicalized version of NAME0[0..LEN-1] in yylval.ssym. The
467 resulting string is valid until the next call to ada_parse. It differs
468 from NAME0 in that:
469 + Characters between '...' or <...> are transfered verbatim to
470 yylval.ssym.
471 + <, >, and trailing "'" characters in quoted sequences are removed
472 (a leading quote is preserved to indicate that the name is not to be
473 GNAT-encoded).
474 + Unquoted whitespace is removed.
475 + Unquoted alphabetic characters are mapped to lower case.
476 Result is returned as a struct stoken, but for convenience, the string
477 is also null-terminated. Result string valid until the next call of
478 ada_parse.
479 */
480static struct stoken
4c4b4cd2 481processId (const char *name0, int len)
14f9c5c9 482{
4c4b4cd2 483 char *name = obstack_alloc (&temp_parse_space, len + 11);
14f9c5c9 484 int i0, i;
52ce6436 485 struct stoken result;
4c4b4cd2 486
14f9c5c9
AS
487 while (len > 0 && isspace (name0[len-1]))
488 len -= 1;
489 i = i0 = 0;
4c4b4cd2 490 while (i0 < len)
14f9c5c9
AS
491 {
492 if (isalnum (name0[i0]))
493 {
494 name[i] = tolower (name0[i0]);
495 i += 1; i0 += 1;
496 }
4c4b4cd2 497 else switch (name0[i0])
14f9c5c9
AS
498 {
499 default:
500 name[i] = name0[i0];
501 i += 1; i0 += 1;
502 break;
503 case ' ': case '\t':
504 i0 += 1;
505 break;
506 case '\'':
52ce6436 507 do
14f9c5c9
AS
508 {
509 name[i] = name0[i0];
510 i += 1; i0 += 1;
511 }
52ce6436 512 while (i0 < len && name0[i0] != '\'');
14f9c5c9
AS
513 i0 += 1;
514 break;
515 case '<':
516 i0 += 1;
517 while (i0 < len && name0[i0] != '>')
518 {
519 name[i] = name0[i0];
520 i += 1; i0 += 1;
521 }
522 i0 += 1;
523 break;
524 }
525 }
526 name[i] = '\000';
527
52ce6436
PH
528 result.ptr = name;
529 result.length = i;
530 return result;
14f9c5c9
AS
531}
532
52ce6436
PH
533/* Return TEXT[0..LEN-1], a string literal without surrounding quotes,
534 with special hex character notations replaced with characters.
535 Result valid until the next call to ada_parse. */
14f9c5c9 536
52ce6436
PH
537static struct stoken
538processString (const char *text, int len)
14f9c5c9 539{
52ce6436
PH
540 const char *p;
541 char *q;
542 const char *lim = text + len;
543 struct stoken result;
544
545 q = result.ptr = obstack_alloc (&temp_parse_space, len);
546 p = text;
547 while (p < lim)
14f9c5c9 548 {
52ce6436
PH
549 if (p[0] == '[' && p[1] == '"' && p+2 < lim)
550 {
551 if (p[2] == '"') /* "...["""]... */
552 {
553 *q = '"';
554 p += 4;
555 }
556 else
557 {
558 int chr;
559 sscanf (p+2, "%2x", &chr);
560 *q = (char) chr;
561 p += 5;
562 }
563 }
564 else
565 *q = *p;
566 q += 1;
567 p += 1;
568 }
569 result.length = q - result.ptr;
570 return result;
14f9c5c9
AS
571}
572
573/* Returns the position within STR of the '.' in a
52ce6436
PH
574 '.{WHITE}*all' component of a dotted name, or -1 if there is none.
575 Note: we actually don't need this routine, since 'all' can never be an
576 Ada identifier. Thus, looking up foo.all or foo.all.x as a name
577 must fail, and will eventually be interpreted as (foo).all or
578 (foo).all.x. However, this does avoid an extraneous lookup. */
579
14f9c5c9 580static int
4c4b4cd2 581find_dot_all (const char *str)
14f9c5c9
AS
582{
583 int i;
584 for (i = 0; str[i] != '\000'; i += 1)
585 {
586 if (str[i] == '.')
587 {
588 int i0 = i;
4c4b4cd2 589 do
14f9c5c9
AS
590 i += 1;
591 while (isspace (str[i]));
52ce6436 592 if (strncmp (str+i, "all", 3) == 0
14f9c5c9
AS
593 && ! isalnum (str[i+3]) && str[i+3] != '_')
594 return i0;
595 }
596 }
597 return -1;
4c4b4cd2 598}
14f9c5c9
AS
599
600/* Returns non-zero iff string SUBSEQ matches a subsequence of STR, ignoring
4c4b4cd2 601 case. */
14f9c5c9
AS
602
603static int
4c4b4cd2 604subseqMatch (const char *subseq, const char *str)
14f9c5c9
AS
605{
606 if (subseq[0] == '\0')
607 return 1;
608 else if (str[0] == '\0')
609 return 0;
610 else if (tolower (subseq[0]) == tolower (str[0]))
611 return subseqMatch (subseq+1, str+1) || subseqMatch (subseq, str+1);
612 else
613 return subseqMatch (subseq, str+1);
614}
14f9c5c9 615
4c4b4cd2
PH
616
617static struct { const char *name; int code; }
14f9c5c9
AS
618attributes[] = {
619 { "address", TICK_ADDRESS },
620 { "unchecked_access", TICK_ACCESS },
621 { "unrestricted_access", TICK_ACCESS },
622 { "access", TICK_ACCESS },
623 { "first", TICK_FIRST },
624 { "last", TICK_LAST },
625 { "length", TICK_LENGTH },
626 { "max", TICK_MAX },
627 { "min", TICK_MIN },
628 { "modulus", TICK_MODULUS },
629 { "pos", TICK_POS },
630 { "range", TICK_RANGE },
631 { "size", TICK_SIZE },
632 { "tag", TICK_TAG },
633 { "val", TICK_VAL },
634 { NULL, -1 }
635};
636
637/* Return the syntactic code corresponding to the attribute name or
638 abbreviation STR. */
639
640static int
4c4b4cd2 641processAttribute (const char *str)
14f9c5c9
AS
642{
643 int i, k;
644
645 for (i = 0; attributes[i].code != -1; i += 1)
646 if (strcasecmp (str, attributes[i].name) == 0)
647 return attributes[i].code;
648
649 for (i = 0, k = -1; attributes[i].code != -1; i += 1)
4c4b4cd2 650 if (subseqMatch (str, attributes[i].name))
14f9c5c9
AS
651 {
652 if (k == -1)
653 k = i;
4c4b4cd2 654 else
14f9c5c9
AS
655 error ("ambiguous attribute name: `%s'", str);
656 }
657 if (k == -1)
658 error ("unrecognized attribute: `%s'", str);
659
660 return attributes[k].code;
661}
662
663int
4c4b4cd2 664yywrap(void)
14f9c5c9
AS
665{
666 return 1;
667}
23485554
PH
668
669/* Dummy definition to suppress warnings about unused static definitions. */
670typedef void (*dummy_function) ();
671dummy_function ada_flex_use[] =
672{
375c0479 673 (dummy_function) yyunput
23485554 674};
This page took 0.339897 seconds and 4 git commands to generate.