Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/boehm-gc/misc.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    7474#if defined(NOSYS) || defined(ECOS)
    7575#undef STACKBASE
     76#endif
     77
     78/* Dont unnecessarily call GC_register_main_static_data() in case      */
     79/* dyn_load.c isn't linked in.                                         */
     80#ifdef DYNAMIC_LOADING
     81# define GC_REGISTER_MAIN_STATIC_DATA() GC_register_main_static_data()
     82#else
     83# define GC_REGISTER_MAIN_STATIC_DATA() TRUE
    7684#endif
    7785
     
    620628    /* Add initial guess of root sets.  Do this first, since sbrk(0)    */
    621629    /* might be used.                                                   */
    622       GC_register_data_segments();
     630      if (GC_REGISTER_MAIN_STATIC_DATA()) GC_register_data_segments();
    623631    GC_init_headers();
    624632    GC_bl_init();
Note: See TracChangeset for help on using the changeset viewer.