ggc-none.c: Include "bconfig.h" if -DGENERATOR_FILE, "config.h" if not.

* ggc-none.c: Include "bconfig.h" if -DGENERATOR_FILE,
	"config.h" if not.

From-SVN: r87358
This commit is contained in:
Mohan Embar 2004-09-11 19:03:23 +00:00 committed by Mohan Embar
parent a17ea89bb1
commit 547d057d11
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-09-11 Mohan Embar <gnustuff@thisiscool.com>
* ggc-none.c: Include "bconfig.h" if -DGENERATOR_FILE,
"config.h" if not.
2004-09-11 Jakub Jelinek <jakub@redhat.com>
* tree-ssa-alias.c (collect_points_to_info_r): Handle

View File

@ -19,11 +19,16 @@
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
/* This version is used by the gen* programs, where we don't really
need GC at all. This prevents problems with pulling in all the
tree stuff. */
/* This version is used by the gen* programs and certain language-specific
targets (such as java), where we don't really need GC at all.
This prevents problems with pulling in all the tree stuff. */
#ifdef GENERATOR_FILE
#include "bconfig.h"
#else
#include "config.h"
#endif
#include "system.h"
#include "coretypes.h"
#include "ggc.h"