Changeset 527 for trunk/src/gmake/function.c
- Timestamp:
- Sep 17, 2006, 6:04:14 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/function.c
r526 r527 261 261 262 262 263 263 #ifdef CONFIG_WITH_OPTIMIZATION_HACKS 264 264 /* The maximum length of a function, once reached there is 265 265 it can't be function and we can skip the hash lookup drop out. */ … … 268 268 269 269 /* Look up a function by name. */ 270 #if defined(__GNUC__) || defined(_MSC_VER)271 270 __inline 272 #endif 271 #endif /* CONFIG_WITH_OPTIMIZATION_HACKS */ 273 272 static const struct function_table_entry * 274 273 lookup_function (const char *s) 275 274 { 276 275 const char *e = s; 277 #ifdef MAX_FUNCTION_LENGTH276 #ifdef CONFIG_WITH_OPTIMIZATION_HACKS 278 277 int left = MAX_FUNCTION_LENGTH; 279 278 int ch; … … 2437 2436 hash_load (&function_table, function_table_init, 2438 2437 FUNCTION_TABLE_ENTRIES, sizeof (struct function_table_entry)); 2439 #ifdef MAX_FUNCTION_LENGTH /* bird */2438 #ifdef CONFIG_WITH_OPTIMIZATION_HACKS 2440 2439 { 2441 2440 unsigned i;
Note:
See TracChangeset
for help on using the changeset viewer.