diff options
author | Brendan Kehoe <brendan@gcc.gnu.org> | 1993-01-12 18:30:59 -0500 |
---|---|---|
committer | Brendan Kehoe <brendan@gcc.gnu.org> | 1993-01-12 18:30:59 -0500 |
commit | 798d99ff9035e37556d44334fd6d2dba92887f13 (patch) | |
tree | 596008e896f384b9d0b483d500804f419e9b1e5f | |
parent | 85cf32bc87f7830e9ae726d45407a04978f87054 (diff) | |
download | gcc-798d99ff9035e37556d44334fd6d2dba92887f13.zip gcc-798d99ff9035e37556d44334fd6d2dba92887f13.tar.gz gcc-798d99ff9035e37556d44334fd6d2dba92887f13.tar.bz2 |
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
-rw-r--r-- | gcc/dbxout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8b51e4a..b1122a0 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: |