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