From: George Helffrich Date: Sun, 23 Jul 2000 17:53:21 +0000 (+0000) Subject: * dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d0e2e024c8af0eb963a16eb1fbede2c317f0255;p=gcc.git * dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab. From-SVN: r35209 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ede1d1df118..f92b65bd0b9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 * h8300.c: Fix formatting. diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 4951ee8ffc2..1be2025779d 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -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. */ }