From 798d99ff9035e37556d44334fd6d2dba92887f13 Mon Sep 17 00:00:00 2001 From: Brendan Kehoe Date: Tue, 12 Jan 1993 18:30:59 -0500 Subject: [PATCH] dbxout.c (dbxout_type): Call with missing third arg as 0. * dbxout.c (dbxout_type) [case FILE_TYPE, SET_TYPE]: Call with missing third arg as 0. From-SVN: r3213 --- gcc/dbxout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8b51e4a37fc..b1122a00c6a 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1008,7 +1008,7 @@ dbxout_type (type, full, show_arg_types) case FILE_TYPE: putc ('d', asmfile); CHARS (1); - dbxout_type (TREE_TYPE (type), 0); + dbxout_type (TREE_TYPE (type), 0, 0); break; case COMPLEX_TYPE: @@ -1027,7 +1027,7 @@ dbxout_type (type, full, show_arg_types) case SET_TYPE: putc ('S', asmfile); CHARS (1); - dbxout_type (TREE_TYPE (type), 0); + dbxout_type (TREE_TYPE (type), 0, 0); break; case ARRAY_TYPE: