diff options
author | Nick Clifton <nickc@redhat.com> | 2002-11-06 19:36:20 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-11-06 19:36:20 +0000 |
commit | c9e3887989960034fd89d176f72d7e14d5bc3d79 (patch) | |
tree | b643a93afcd06f0052e3380516c79bb964018532 /binutils/deflex.l | |
parent | ac835424b5ad4dce56c8d4ed6835d56fc225c786 (diff) | |
download | gdb-c9e3887989960034fd89d176f72d7e14d5bc3d79.zip gdb-c9e3887989960034fd89d176f72d7e14d5bc3d79.tar.gz gdb-c9e3887989960034fd89d176f72d7e14d5bc3d79.tar.bz2 |
Adds support for fastcall symbols as used on Microsoft Windows platforms
(i386)
Diffstat (limited to 'binutils/deflex.l')
-rw-r--r-- | binutils/deflex.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/deflex.l b/binutils/deflex.l index 8ff72b8..d4888bc 100644 --- a/binutils/deflex.l +++ b/binutils/deflex.l @@ -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; } |