forked from Imagelibrary/binutils-gdb
Adds support for fastcall symbols as used on Microsoft Windows platforms
(i386)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
%{/* deflex.l - Lexer for .def files */
|
||||
|
||||
/* Copyright 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||
/* Copyright 1995, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
@@ -61,7 +61,7 @@ int linenumber;
|
||||
[0-9][x0-9A-Fa-f]* { yylval.number = strtol (yytext,0,0);
|
||||
return NUMBER; }
|
||||
|
||||
[A-Za-z$:\-\_?][A-Za-z0-9/$:\-\_@?]* {
|
||||
(@)?[A-Za-z$:\-\_?][A-Za-z0-9/$:\-\_@?]* {
|
||||
yylval.id = xstrdup (yytext);
|
||||
return ID;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user