]> gcc.gnu.org Git - gcc.git/commitdiff
method.c (thunk_labelno): Move outside ifdef block to make garbage collector happy.
authorJan Hubicka <jh@suse.cz>
Tue, 24 Jun 2003 13:31:59 +0000 (15:31 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 24 Jun 2003 13:31:59 +0000 (13:31 +0000)
* method.c (thunk_labelno): Move outside ifdef block to make garbage
collector happy.

From-SVN: r68419

gcc/cp/ChangeLog
gcc/cp/method.c

index 2bc0484997876bbfb9619a98cf8a3b9e69f7e11b..8ae7c023e9a4aaf46b49b83c64be6b50183bf897 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jun 24 15:30:05 CEST 2003  Jan Hubicka  <jh@suse.cz>
+
+       * method.c (thunk_labelno): Move outside ifdef block to make garbage
+       collector happy.
+
 Tue Jun 24 13:52:34 CEST 2003  Jan Hubicka  <jh@suse.cz>
 
        * class.c (build_vtable): Make vtables.
index 3c9ab9116ac4a193723f2f616b06f6638011ce1e..d02d0243f87d845d18e12de5806ee2af0a17701a 100644 (file)
@@ -354,8 +354,10 @@ thunk_adjust (tree ptr, bool this_adjusting,
   return ptr;
 }
 
-#ifdef ASM_OUTPUT_DEF
+/* Garbage collector tables contains thunk_labelno even when places
+   inside ifdef block.  */
 static GTY (()) int thunk_labelno;
+#ifdef ASM_OUTPUT_DEF
 
 /* Create a static alias to function.  */
 
This page took 0.093929 seconds and 5 git commands to generate.