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
This commit is contained in:
Brendan Kehoe 1993-01-12 18:30:59 -05:00
parent 85cf32bc87
commit 798d99ff90

View File

@ -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: