Remove the unused parameter const arch_env_t *env from arch_get_irn_register().
[libfirm] / firm_config.h.in
1 /* define to 1 to use the ILP solver */
2 @FIRMCONFIG_WITH_ILP@
3
4 /* define to 1 to have wchar_t support for identifiers */
5 @FIRMCONFIG_FIRM_ENABLE_WCHAR@
6
7 /* undef to disable inlining */
8 @FIRMCONFIG_USE_INLINING@
9
10 /* define to enable hooks */
11 @FIRMCONFIG_FIRM_ENABLE_HOOKS@
12
13 #ifdef USE_INLINING
14 #define INLINE inline
15 #else
16 #define INLINE
17 #endif
18
19 /* Firm statistics need hooks */
20 #ifdef FIRM_STATISTICS
21 #ifndef FIRM_ENABLE_HOOKS
22 #define FIRM_ENABLE_HOOKS
23 #endif
24 #endif