c-lang.c (finish_file): Rename void_list_node to void_list_node_1 to avoid name clash.
authorBernd Schmidt <bernds@cygnus.co.uk>
Wed, 21 Jul 1999 13:35:09 +0000 (13:35 +0000)
committerBernd Schmidt <crux@gcc.gnu.org>
Wed, 21 Jul 1999 13:35:09 +0000 (13:35 +0000)
* c-lang.c (finish_file): Rename void_list_node to void_list_node_1
to avoid name clash.

From-SVN: r28207

gcc/ChangeLog
gcc/c-lang.c

index efe62f95fbc8f0330240e6710b3978229bc906d5..bf2434b6c3b9b850440b8b72783229fca748c95b 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jul 21 14:30:51 1999  Bernd Schmidt  <bernds@cygnus.co.uk>
+
+       * c-lang.c (finish_file): Rename void_list_node to void_list_node_1
+       to avoid name clash.
+
 Wed Jul 21 08:39:22 1999  Gavin Romig-Koch  <gavin@cygnus.com>
 
        * c-lex.c (yylex) : Correct the test for overflow when lexing
index 4c554115b7ce36891b75ef81b70353bea4704b82..8f37cab474a7becff169eab9f7c241b1d49654d7 100644 (file)
@@ -168,14 +168,14 @@ finish_file ()
 #endif
   extern tree build_function_call                 PROTO((tree, tree));
 #if !defined(ASM_OUTPUT_CONSTRUCTOR) || !defined(ASM_OUTPUT_DESTRUCTOR)
-  tree void_list_node = build_tree_list (NULL_TREE, void_type_node);
+  tree void_list_node_1 = build_tree_list (NULL_TREE, void_type_node);
 #endif
 #ifndef ASM_OUTPUT_CONSTRUCTOR
   if (static_ctors)
     {
       tree fnname = get_file_function_name ('I');
-      start_function (void_list_node,
-                     build_parse_node (CALL_EXPR, fnname, void_list_node,
+      start_function (void_list_node_1,
+                     build_parse_node (CALL_EXPR, fnname, void_list_node_1,
                                        NULL_TREE),
                      NULL_TREE, NULL_TREE, 0);
       fnname = DECL_ASSEMBLER_NAME (current_function_decl);
@@ -194,8 +194,8 @@ finish_file ()
   if (static_dtors)
     {
       tree fnname = get_file_function_name ('D');
-      start_function (void_list_node,
-                     build_parse_node (CALL_EXPR, fnname, void_list_node,
+      start_function (void_list_node_1,
+                     build_parse_node (CALL_EXPR, fnname, void_list_node_1,
                                        NULL_TREE),
                      NULL_TREE, NULL_TREE, 0);
       fnname = DECL_ASSEMBLER_NAME (current_function_decl);