diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 15:16:10 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 15:16:10 +0000 |
commit | aab72a2c39963a7afc2537bd2ed9d91ab58a0cfb (patch) | |
tree | b0026161a8b7c9eba1f3d94626dbf39660211e44 /gcc/varray.c | |
parent | a1d6c3db97d3864f7ad62ac60cc359cfcf26e63b (diff) | |
download | gcc-aab72a2c39963a7afc2537bd2ed9d91ab58a0cfb.tar.gz |
r110129@banpei: zack | 2006-01-22 14:51:57 -0800
* varray.c: Remove GENERATOR_FILE #ifdefs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110125 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varray.c')
-rw-r--r-- | gcc/varray.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gcc/varray.c b/gcc/varray.c index ceec02760b0..eb8c99c34ba 100644 --- a/gcc/varray.c +++ b/gcc/varray.c @@ -1,5 +1,5 @@ /* Virtual array support. - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc. Contributed by Cygnus Solutions. @@ -20,22 +20,11 @@ the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* This file is compiled twice: once for the generator programs - once for the compiler. */ -#ifdef GENERATOR_FILE -#include "bconfig.h" -#else #include "config.h" -#endif - #include "system.h" #include "coretypes.h" #include "tm.h" -#ifdef GENERATOR_FILE -# include "errors.h" -#else -# include "toplev.h" -#endif +#include "toplev.h" #include "varray.h" #include "ggc.h" #include "hashtab.h" |