diff options
Diffstat (limited to 'gcc/config/i386/interix.c')
-rw-r--r-- | gcc/config/i386/interix.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/config/i386/interix.c b/gcc/config/i386/interix.c index 8ea2c6e171f..e8caa60e605 100644 --- a/gcc/config/i386/interix.c +++ b/gcc/config/i386/interix.c @@ -1,5 +1,5 @@ /* Subroutines for insn-output.c for Windows NT. - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc. This file is part of GNU CC. @@ -93,15 +93,8 @@ i386_pe_unique_section (decl, reloc) without a .rdata section. */ if (TREE_CODE (decl) == FUNCTION_DECL) prefix = ".text$"; -/* else if (DECL_INITIAL (decl) == 0 - || DECL_INITIAL (decl) == error_mark_node) - prefix = ".bss"; */ else if (DECL_READONLY_SECTION (decl, reloc)) -#ifdef READONLY_DATA_SECTION prefix = ".rdata$"; -#else - prefix = ".text$"; -#endif else prefix = ".data$"; len = strlen (name) + strlen (prefix); |