diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-21 13:35:09 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-21 13:35:09 +0000 |
commit | 13b45d3a34cc79668199499e8568503a7e6dddb5 (patch) | |
tree | aee76eaac08b0d0a5db4da73ff37c0db815241a9 /gcc/c-lang.c | |
parent | 59872e34f41a5e27868182efb23f6703cf819801 (diff) | |
download | gcc-13b45d3a34cc79668199499e8568503a7e6dddb5.tar.gz |
* c-lang.c (finish_file): Rename void_list_node to void_list_node_1
to avoid name clash.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28207 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index 4c554115b7c..8f37cab474a 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -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); |