diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dbxout.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ec6c009..8760fb2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-27 Devang Patel <dpatel@apple.com> + + * dbxout.c (dbxout_type): Check use_gnu_debug_info_extensions. + 2005-04-27 Matt Thomas <matt@3am-software.com> Jan-Benedict Glaw <jbglaw@microdata-pos.de> diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 6ad3b62..586ed87 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1995,7 +1995,7 @@ dbxout_type (tree type, int full) break; } - if (vector_type) + if (use_gnu_debug_info_extensions && vector_type) { have_used_extensions = 1; stabstr_S ("@V;"); |