Add a performance warning to the add_compound_ent_value() funtion
[libfirm] / config.h.in
index e135d28..f9d0276 100644 (file)
 /* define to 1 to enable debugging stuff. */
 #undef DEBUG_libfirm
 
+/* define to 1 to use the libcore */
+#undef WITH_LIBCORE
+
+/* define to 1 to use the ILP solver */
+#undef WITH_ILP
+
+/* define to 1 to enable Firm to call the JVM */
+#undef WITH_JVM
+
+/* define to 1 to have wchar_t support for identifiers */
+#define FIRM_ENABLE_WCHAR
+
 /* Define to disable assertion checking.  */
 #undef NDEBUG
 
 /* undef to disable inlining */
 #undef USE_INLINING
 
+/* Define to 1 if Firm hooks are activated */
+#undef FIRM_ENABLE_HOOKS
+
 /* Define to 1 if Firm statistics are activated */
 #undef FIRM_STATISTICS
 
 #else
 #define INLINE
 #endif
+
+/* Firm statistics need hooks */
+#ifdef FIRM_STATISTICS
+#ifndef FIRM_ENABLE_HOOKS
+#define FIRM_ENABLE_HOOKS
+#endif
+#endif