From 2d0e2e024c8af0eb963a16eb1fbede2c317f0255 Mon Sep 17 00:00:00 2001 From: George Helffrich Date: Sun, 23 Jul 2000 17:53:21 +0000 Subject: * dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab. From-SVN: r35209 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/dbxout.c') diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 4951ee8..1be2025 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. */ } -- cgit v1.1