* config/tc-mips.c (mips_set_options): Add ase_mt for MT instructions.
[deliverable/binutils-gdb.git] / binutils / deflex.l
index bdf15d3a12efc84c23b22448ef26e6d35bd77b80..c6d45c85a4311cfa5c2bf0ffa1ff8fa14e7af20f 100644 (file)
@@ -1,6 +1,6 @@
 %{/* deflex.l - Lexer for .def files */
 
-/*  Copyright 1995, 1997, 1998, 1999, 2002, 2003, 2004
+/*  Copyright 1995, 1997, 1998, 1999, 2002, 2003, 2004, 2005
     Free Software Foundation, Inc.
 
     This file is part of GNU Binutils.
@@ -17,7 +17,7 @@
 
     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 
 /* Contributed by Steve Chamberlain: sac@cygnus.com  */
@@ -27,6 +27,8 @@
 #include "defparse.h"
 #include "dlltool.h"
 
+#define YY_NO_UNPUT
+
 int linenumber;
 
 %}
@@ -81,6 +83,7 @@ int linenumber;
 ";".*          { }
 " "            { }
 "\t"           { }
+"\r"           { }
 "\n"           { linenumber ++ ;}
 "="            { return '=';}
 "."            { return '.';}
This page took 0.023459 seconds and 4 git commands to generate.