dbxout.c (dbxout_type): Call with missing third arg as 0.
authorBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 12 Jan 1993 23:30:59 +0000 (18:30 -0500)
committerBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 12 Jan 1993 23:30:59 +0000 (18:30 -0500)
* dbxout.c (dbxout_type) [case FILE_TYPE, SET_TYPE]: Call with
missing third arg as 0.

From-SVN: r3213

gcc/dbxout.c

index 8b51e4a37fc436e778794fc8b91bdab6e3c4ea74..b1122a00c6a4d9eefd76a24fb952433a58426bd0 100644 (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: