Ignore:
Timestamp:
Sep 17, 2006, 6:04:14 AM (19 years ago)
Author:
bird
Message:

CONFIG_WITH_OPTIMIZATION_HACKS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/function.c

    r526 r527  
    261261
    262262
    263 
     263#ifdef CONFIG_WITH_OPTIMIZATION_HACKS
    264264/* The maximum length of a function, once reached there is
    265265   it can't be function and we can skip the hash lookup drop out. */
     
    268268
    269269/* Look up a function by name.  */
    270 #if defined(__GNUC__) || defined(_MSC_VER)
    271270__inline
    272 #endif
     271#endif /* CONFIG_WITH_OPTIMIZATION_HACKS */
    273272static const struct function_table_entry *
    274273lookup_function (const char *s)
    275274{
    276275  const char *e = s;
    277 #ifdef MAX_FUNCTION_LENGTH
     276#ifdef CONFIG_WITH_OPTIMIZATION_HACKS
    278277  int left = MAX_FUNCTION_LENGTH;
    279278  int ch;
     
    24372436  hash_load (&function_table, function_table_init,
    24382437             FUNCTION_TABLE_ENTRIES, sizeof (struct function_table_entry));
    2439 #ifdef MAX_FUNCTION_LENGTH /* bird */
     2438#ifdef CONFIG_WITH_OPTIMIZATION_HACKS
    24402439  {
    24412440    unsigned i;
Note: See TracChangeset for help on using the changeset viewer.