Commit 798d99ff by Brendan Kehoe

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
parent 85cf32bc
...@@ -1008,7 +1008,7 @@ dbxout_type (type, full, show_arg_types) ...@@ -1008,7 +1008,7 @@ dbxout_type (type, full, show_arg_types)
case FILE_TYPE: case FILE_TYPE:
putc ('d', asmfile); putc ('d', asmfile);
CHARS (1); CHARS (1);
dbxout_type (TREE_TYPE (type), 0); dbxout_type (TREE_TYPE (type), 0, 0);
break; break;
case COMPLEX_TYPE: case COMPLEX_TYPE:
...@@ -1027,7 +1027,7 @@ dbxout_type (type, full, show_arg_types) ...@@ -1027,7 +1027,7 @@ dbxout_type (type, full, show_arg_types)
case SET_TYPE: case SET_TYPE:
putc ('S', asmfile); putc ('S', asmfile);
CHARS (1); CHARS (1);
dbxout_type (TREE_TYPE (type), 0); dbxout_type (TREE_TYPE (type), 0, 0);
break; break;
case ARRAY_TYPE: case ARRAY_TYPE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment