This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

enable gc for c


I've had it on in my local tree for at least three weeks now.
I think it's safe enough to do for real.


r~


        * c-decl.c (ggc_p): Enable.

Index: c-decl.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/c-decl.c,v
retrieving revision 1.82
diff -u -p -d -r1.82 c-decl.c
--- c-decl.c	1999/09/30 13:40:41	1.82
+++ c-decl.c	1999/10/07 06:56:20
@@ -70,8 +70,8 @@ enum decl_context
 #define WCHAR_TYPE "int"
 #endif
 
-/* Don't do GC.  */
-int ggc_p = 0;
+/* Do GC.  */
+int ggc_p = 1;
 
 /* Nonzero if we have seen an invalid cross reference
    to a struct, union, or enum, but not yet printed the message.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]