diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3997,7 +3997,8 @@ build_complex_type (component_type) /* If we are writing Dwarf2 output we need to create a name, since complex is a fundamental type. */ - if (write_symbols == DWARF2_DEBUG && ! TYPE_NAME (t)) + if ((write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG) + && ! TYPE_NAME (t)) { const char *name; if (component_type == char_type_node) |