Commit 547d057d by Mohan Embar Committed by Mohan Embar

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
parent a17ea89b
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> 2004-09-11 Jakub Jelinek <jakub@redhat.com>
* tree-ssa-alias.c (collect_points_to_info_r): Handle * tree-ssa-alias.c (collect_points_to_info_r): Handle
......
...@@ -19,11 +19,16 @@ ...@@ -19,11 +19,16 @@
Software Foundation, 59 Temple Place - Suite 330, Boston, MA Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */ 02111-1307, USA. */
/* This version is used by the gen* programs, where we don't really /* This version is used by the gen* programs and certain language-specific
need GC at all. This prevents problems with pulling in all the targets (such as java), where we don't really need GC at all.
tree stuff. */ This prevents problems with pulling in all the tree stuff. */
#ifdef GENERATOR_FILE
#include "bconfig.h" #include "bconfig.h"
#else
#include "config.h"
#endif
#include "system.h" #include "system.h"
#include "coretypes.h" #include "coretypes.h"
#include "ggc.h" #include "ggc.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment