diff options
author | Ben Elliston <bje@au.ibm.com> | 2009-11-19 05:06:35 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2009-11-19 05:06:35 +0000 |
commit | cfdf38f2b4e7a22ee9f405e347bd8ebcb8a19454 (patch) | |
tree | dc87d8476b0fe19304e20b5d5f1129e8d9cee6f5 | |
parent | f66cfbed9a8d8fa9f32eba7403a2e34b2454b355 (diff) | |
download | gdb-cfdf38f2b4e7a22ee9f405e347bd8ebcb8a19454.zip gdb-cfdf38f2b4e7a22ee9f405e347bd8ebcb8a19454.tar.gz gdb-cfdf38f2b4e7a22ee9f405e347bd8ebcb8a19454.tar.bz2 |
binutils/
* arlex.l: Enable noinput, nounput flex options.
* syslex.l: Likewise.
ld/
* ldlex.l: Enable nounput flex option.
-rw-r--r-- | binutils/ChangeLog | 7 | ||||
-rw-r--r-- | binutils/arlex.l | 2 | ||||
-rw-r--r-- | binutils/syslex.l | 2 | ||||
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/ldlex.l | 2 |
5 files changed, 16 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 040ba3f..05a696a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,10 @@ +2009-11-19 Ben Elliston <bje@au.ibm.com> + + * arlex.l: Enable noinput, nounput flex options. + * syslex.l: Likewise. + 2009-11-17 Paul Brook <paul@codesourcery.com> - Daniel Jacobowitz <dan@codesourcery.com> + Daniel Jacobowitz <dan@codesourcery.com> * readelf.c (arm_attr_tag_CPU_arch): Add v7E-M. diff --git a/binutils/arlex.l b/binutils/arlex.l index 48523e4..aeac391 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -1,3 +1,5 @@ +%option noinput nounput + %{ /* arlex.l - Strange script language lexer */ diff --git a/binutils/syslex.l b/binutils/syslex.l index 2c8a694..7e3f298 100644 --- a/binutils/syslex.l +++ b/binutils/syslex.l @@ -1,3 +1,5 @@ +%option noinput nounput + %{ /* Copyright 2001, 2003, 2005, 2007 Free Software Foundation, Inc. diff --git a/ld/ChangeLog b/ld/ChangeLog index c4d0f42..1e8f51c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2009-11-19 Ben Elliston <bje@au.ibm.com> + + * ldlex.l: Enable nounput flex option. + 2009-11-15 Kai Tietz <kai.tietz@onevision.com> * pe-dll.c (pe_undef_alias_cdecl_match): New function. @@ -1,3 +1,5 @@ +%option nounput + %{ /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |