* dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab.

From-SVN: r35209
This commit is contained in:
George Helffrich 2000-07-23 17:53:21 +00:00 committed by Jeff Law
parent 05ae1c31cf
commit 2d0e2e024c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Jul 23 11:52:03 2000 George Helffrich (george@gly.bris.ac.uk)
* dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab.
2000-07-23 Kazu Hirata <kazu@hxi.com>
* h8300.c: Fix formatting.

View file

@ -1266,7 +1266,7 @@ dbxout_type (type, full, show_arg_types)
dbxout_type_index (type);
fputc (';', asmfile);
fprintf (asmfile, HOST_WIDE_INT_PRINT_DEC,
int_size_in_bytes (TREE_TYPE (type)));
2 * int_size_in_bytes (TREE_TYPE (type)));
fputs (";0;", asmfile);
CHARS (12); /* The number is probably incorrect here. */
}