From fb3643f4833378632c66a745912f0d0f8c9b2cea Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 6 Nov 2002 19:36:20 +0000 Subject: Adds support for fastcall symbols as used on Microsoft Windows platforms (i386) --- binutils/deflex.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binutils/deflex.l') diff --git a/binutils/deflex.l b/binutils/deflex.l index 8ff72b8aec..d4888bc9b4 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; } -- cgit v1.2.1