diff options
Diffstat (limited to 'gcc/config/i386/nwld.c')
| -rw-r--r-- | gcc/config/i386/nwld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/nwld.c b/gcc/config/i386/nwld.c index 962432e..4688ca0 100644 --- a/gcc/config/i386/nwld.c +++ b/gcc/config/i386/nwld.c @@ -48,7 +48,7 @@ nwld_named_section_asm_out_constructor (rtx symbol, int priority) MAX_INIT_PRIORITY - priority); #endif - named_section_flags (section, 0); + switch_to_section (get_section (section, 0, NULL)); assemble_align (POINTER_SIZE); assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); } @@ -68,7 +68,7 @@ nwld_named_section_asm_out_destructor (rtx symbol, int priority) MAX_INIT_PRIORITY - priority); #endif - named_section_flags (section, 0); + switch_to_section (get_section (section, 0, NULL)); assemble_align (POINTER_SIZE); assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); } |
