diff options
author | Graham Stott <grahams@redhat.com> | 2001-12-31 04:13:35 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2001-12-31 04:13:35 +0000 |
commit | eb3aaa5b8614583989296fe7a7ce16baf7c258f4 (patch) | |
tree | 8454d0ee3b8fb1103a64ec48a472c74df8106048 | |
parent | 742b62e75aa85f3bf015480280d0bc6d2008d466 (diff) | |
download | gcc-eb3aaa5b8614583989296fe7a7ce16baf7c258f4.zip gcc-eb3aaa5b8614583989296fe7a7ce16baf7c258f4.tar.gz gcc-eb3aaa5b8614583989296fe7a7ce16baf7c258f4.tar.bz2 |
* c-lex.c: Include tree.h before expr.h
From-SVN: r48411
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c-lex.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9468fea..f33e9c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,10 @@ 2001-12-31 Graham Stott <grahams@redhat.com> - * c-typeck.c: Include rtl.h earlier. + * c-lex.c: Include tree.h before expr.h + +2001-12-31 Graham Stott <grahams@redhat.com> + + * c-typeck.c: Include rtl.h earlier. 2001-12-31 Graham Stott <grahams@redhat.com> diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 7d532b2..fe08f41 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -23,8 +23,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "system.h" #include "rtl.h" -#include "expr.h" #include "tree.h" +#include "expr.h" #include "input.h" #include "output.h" #include "c-lex.h" |