fixed config.h include
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 2 Dec 2004 16:22:04 +0000 (16:22 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 2 Dec 2004 16:22:04 +0000 (16:22 +0000)
[r4556]

21 files changed:
ir/adt/set.c
ir/ana2/ecg.c
ir/ana2/irmemwalk.c
ir/ana2/lset.c
ir/ana2/pto.c
ir/ana2/pto_comp.c
ir/ana2/pto_ctx.c
ir/ana2/pto_debug.c
ir/ana2/pto_init.c
ir/ana2/pto_mod.c
ir/ana2/pto_name.c
ir/ana2/pto_util.c
ir/ana2/typalise.c
ir/common/firm.c
ir/common/firm_common.c
ir/common/firm_common_t.h
ir/common/firmwalk.c
ir/common/panic.c
ir/debug/dbginfo.c
ir/external/read.c
ir/ident/ident.c

index ca4a8f4..dd7315b 100644 (file)
@@ -33,7 +33,7 @@
 /* $Id$ */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 /* bcopy is not ISO C *
index 05ab00d..e71c7e1 100644 (file)
@@ -13,7 +13,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 /**
@@ -1123,6 +1123,9 @@ void ecg_ecg ()
 
 /*
   $Log$
+  Revision 1.9  2004/12/02 16:17:50  beck
+  fixed config.h include
+
   Revision 1.8  2004/11/30 14:45:44  liekweg
   fix graph dumping, remove 'HERE's
 
index 2b885d5..13ee10b 100644 (file)
@@ -21,7 +21,7 @@
 
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 # include "irgwalk.h"           /* for irg_walk_func */
@@ -261,6 +261,9 @@ void irg_walk_mem (ir_graph *graph,
 
 /*
   $Log$
+  Revision 1.6  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.5  2004/11/19 10:35:20  liekweg
   also test for NoMem
 
index 8ed89a2..d0c9a83 100644 (file)
@@ -14,7 +14,7 @@
 
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 # include "lset.h"
 # endif /* not defined TRUE */
 
 # include <assert.h>
+
+#ifdef HAVE_STRING_H
 # include <string.h>             /* need memset */
+#endif
 
 /*
   Lists, err, Sets
@@ -191,6 +194,9 @@ void lset_destroy (lset_t *lset)
 \f
 /*
   $Log$
+  Revision 1.2  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.1  2004/10/21 11:09:37  liekweg
   Moved memwalk stuf into irmemwalk
   Moved lset stuff into lset
index a293db3..554866e 100644 (file)
    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
 */
 
-# ifdef HAVE_CONFIG_H
-#  include <config.h>
-# endif
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /*
  pto: Entry to PTO
 */
 
-#  include <string.h>
+#ifdef HAVE_STRING_H
+# include <string.h>
+#endif
 
 # include "pto.h"
 
-# include "irnode.h"
+# include "irnode_t.h"
 # include "irprog.h"
 # include "xmalloc.h"
 
@@ -132,6 +134,9 @@ void pto_cleanup ()
 \f
 /*
   $Log$
+  Revision 1.12  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.11  2004/11/30 15:49:27  liekweg
   include 'dump'
 
index 3f4d044..f2bfeaa 100644 (file)
@@ -13,7 +13,7 @@
 */
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 /*
@@ -28,7 +28,7 @@
 # include "pto_ctx.h"
 # include "pto_mod.h"
 
-# include "irnode.h"
+# include "irnode_t.h"
 # include "irprog.h"
 # include "xmalloc.h"
 # include "irmemwalk.h"
@@ -619,6 +619,9 @@ pto_t *get_alloc_pto (ir_node *alloc)
 \f
 /*
   $Log$
+  Revision 1.6  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.5  2004/11/30 14:47:54  liekweg
   fix initialisation; do correct iteration
 
index 868f969..20d9c16 100644 (file)
@@ -13,7 +13,7 @@
 */
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 /*
@@ -85,6 +85,9 @@ ctx_info_t *set_curr_ctx (ctx_info_t *ctx)
 \f
 /*
   $Log$
+  Revision 1.4  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.3  2004/11/24 14:53:55  liekweg
   Bugfixes
 
index 60f0a46..2dd2e4a 100644 (file)
@@ -13,7 +13,7 @@
 */
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 /*
@@ -56,6 +56,9 @@ void set_dbg_lvl (int lvl)
 \f
 /*
   $Log$
+  Revision 1.3  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.2  2004/11/24 14:53:56  liekweg
   Bugfixes
 
index 62208f3..23d24d0 100644 (file)
@@ -12,9 +12,9 @@
    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
 */
 
-# ifdef HAVE_CONFIG_H
-#  include <config.h>
-# endif
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /*
  pto_init: Initialisation Functions
@@ -422,6 +422,9 @@ void pto_reset_graph_pto (ir_graph *graph, int ctx_idx)
 \f
 /*
   $Log$
+  Revision 1.8  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.7  2004/11/30 14:47:54  liekweg
   fix initialisation; do correct iteration
 
index e85f07a..8640b1b 100644 (file)
@@ -12,9 +12,9 @@
    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
 */
 
-# ifdef HAVE_CONFIG_H
-#  include <config.h>
-# endif
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /*
   pto_mod: Load/Store Transfer Functions
@@ -92,6 +92,9 @@ int mod_load  (ir_node *load, entity *ent,
 \f
 /*
   $Log$
+  Revision 1.2  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.1  2004/11/30 14:47:54  liekweg
   fix initialisation; do correct iteration
 
index 4d47eb5..ac64ec6 100644 (file)
@@ -12,9 +12,9 @@
   Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
 */
 
-# ifdef HAVE_CONFIG_H
-#  include <config.h>
-# endif
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /*
   pto_name: Names for abstract objects
@@ -424,6 +424,9 @@ void pto_name_cleanup ()
 \f
 /*
   $Log$
+  Revision 1.5  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.4  2004/11/30 15:49:27  liekweg
   include 'dump'
 
index 7b1461d..382e471 100644 (file)
@@ -12,9 +12,9 @@
    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
 */
 
-# ifdef HAVE_CONFIG_H
-#  include <config.h>
-# endif
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /*
  pto_util: Utilitites for PTO
@@ -22,7 +22,7 @@
 
 # include "pto_util.h"
 
-# include "irnode.h"
+# include "irnode_t.h"
 # include "irgwalk.h"
 # include "xmalloc.h"
 
@@ -151,6 +151,9 @@ int is_dummy_load_ptr (ir_node *ptr)
 \f
 /*
   $Log$
+  Revision 1.9  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.8  2004/11/26 15:59:14  liekweg
   recognize dummy loads
 
index a2c9503..1a62bbd 100644 (file)
@@ -14,7 +14,7 @@
 
 
 # ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 # endif
 
 # include "typalise.h"
 # endif /* not defined TRUE */
 
 # include <assert.h>
+
+#ifdef HAVE_STRING_H
 # include <string.h>
+#endif
 
-# include "irnode.h"
+# include "irnode_t.h"
 # include "irgwalk.h"
 # include "xmalloc.h"
 
@@ -704,6 +707,9 @@ typalise_t *typalise (ir_node *node)
 \f
 /*
   $Log$
+  Revision 1.3  2004/12/02 16:17:51  beck
+  fixed config.h include
+
   Revision 1.2  2004/10/22 09:53:10  liekweg
   Correctly handle proj_args
 
index 70ea2c8..c169dce 100644 (file)
  */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
+#endif
+
+#ifdef HAVE_STRING_H
+# include <string.h>
 #endif
 
 # include <stdio.h>
+
 # include "ident_t.h"
 # include "firm.h"
 # include "mangle.h"
index 2a79301..0c9ec8d 100644 (file)
@@ -12,7 +12,7 @@
 
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 #include "firm_common_t.h"
index 7e726be..c06b84d 100644 (file)
 # ifndef _COMMON_T_H_
 # define _COMMON_T_H_
 
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
 #include "firm_common.h"
 
 /* --- Global flags.  --- */
index a0d7ee7..30019c0 100644 (file)
  */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
-#include <string.h>
+#ifdef HAVE_STRING_H
+# include <string.h>
+#endif
 
 #include "firmwalk.h"
 
index b73e234..a316e2f 100644 (file)
 
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 # include <stdlib.h>
 
-# include "panic.h"
 # include <stdio.h>
 # include <stdarg.h>
+# include "panic.h"
 
 
 void
index 9520699..83b491d 100644 (file)
@@ -12,7 +12,7 @@
 
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 #include "dbginfo_t.h"
index 727ab84..fca16c4 100644 (file)
@@ -23,8 +23,9 @@
 #ifdef HAVE_STDLIB_H
 # include <stdlib.h>
 #endif
-
+#ifdef HAVE_STRING_H
 # include <string.h>
+#endif
 
 #include "read_t.h"
 #include "read.h"
@@ -1659,6 +1660,9 @@ void free_abstraction(void) {
 \f
 /*
  * $Log$
+ * Revision 1.18  2004/12/02 16:21:42  beck
+ * fixed config.h include
+ *
  * Revision 1.17  2004/11/23 14:17:31  liekweg
  * fenced out currently unneeded static functions
  *
index e0c97cc..bd79918 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
 #include <assert.h>