diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index ec6aabf..3141110 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -7793,7 +7793,7 @@ handle_vtv_comdat_section (section *sect, const_tree decl ATTRIBUTE_UNUSED) | SECTION_LINKONCE, DECL_NAME (decl)); in_section = sect; -#elif defined (TARGET_PECOFF) +#else /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here. Therefore the following check is used. In case a the target is PE or COFF a comdat group section @@ -7820,8 +7820,8 @@ handle_vtv_comdat_section (section *sect, const_tree decl ATTRIBUTE_UNUSED) DECL_NAME (decl)); in_section = sect; } -#else - switch_to_section (sect); + else + switch_to_section (sect); #endif } |