dpatel      02/09/18 19:34:43

  Modified:    gcc/cp   decl.c
  Log:
  freeze/thaw newly added members of struct cp_binding_level
  
  Revision  Changes    Path
  1.118     +5 -0      gcc3/gcc/cp/decl.c
  
  Index: decl.c
  ===================================================================
  RCS file: /cvs/Darwin/gcc3/gcc/cp/decl.c,v
  retrieving revision 1.117
  retrieving revision 1.118
  diff -u -r1.117 -r1.118
  --- decl.c    2002/09/17 22:04:02     1.117
  +++ decl.c    2002/09/19 02:34:42     1.118
  @@ -15362,6 +15362,11 @@
     while (p)
       {
         PFE_FREEZE_THAW_WALK (p->names);
  +      /* APPLE LOCAL begin cp_binding_level dpatel */
  +      /* FSF Candidate */
  +      PFE_FREEZE_THAW_WALK (p->namespaces);
  +      PFE_FREEZE_THAW_WALK (p->vtables);
  +      /* APPLE LOCAL end cp_binding_level dpatel */
         PFE_FREEZE_THAW_WALK (p->tags);
         PFE_FREEZE_THAW_WALK (p->usings);
         PFE_FREEZE_THAW_WALK (p->using_directives);
  
  
  


Reply via email to