summaryrefslogtreecommitdiff
path: root/gcc/c-lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r--gcc/c-lang.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c
index 24fc72c71b4..c8efa35ff6f 100644
--- a/gcc/c-lang.c
+++ b/gcc/c-lang.c
@@ -183,7 +183,9 @@ finish_file ()
{
tree fnname = get_file_function_name ('I');
start_function (void_list_node_1,
- build_parse_node (CALL_EXPR, fnname, void_list_node_1,
+ build_parse_node (CALL_EXPR, fnname,
+ tree_cons (NULL_TREE, NULL_TREE,
+ void_list_node_1),
NULL_TREE),
NULL_TREE, NULL_TREE, 0);
fnname = DECL_ASSEMBLER_NAME (current_function_decl);
@@ -203,7 +205,9 @@ finish_file ()
{
tree fnname = get_file_function_name ('D');
start_function (void_list_node_1,
- build_parse_node (CALL_EXPR, fnname, void_list_node_1,
+ build_parse_node (CALL_EXPR, fnname,
+ tree_cons (NULL_TREE, NULL_TREE,
+ void_list_node_1),
NULL_TREE),
NULL_TREE, NULL_TREE, 0);
fnname = DECL_ASSEMBLER_NAME (current_function_decl);