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:
parent
85cf32bc87
commit
798d99ff90
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user