diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2003-06-14 00:09:30 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-06-14 00:09:30 +0000 |
commit | ed70c24512401d2b8fa62bab5a32dd8ad835a757 (patch) | |
tree | 698715da64d7b91485c0620e67c1f9236a88a642 /gcc/config | |
parent | 267409e8b0f3b3cd7a2ee231129cb43b1625f166 (diff) | |
download | gcc-ed70c24512401d2b8fa62bab5a32dd8ad835a757.zip gcc-ed70c24512401d2b8fa62bab5a32dd8ad835a757.tar.gz gcc-ed70c24512401d2b8fa62bab5a32dd8ad835a757.tar.bz2 |
svr3.h (ASM_FILE_START): Don't use ASM_FILE_START_1.
* config/svr3.h (ASM_FILE_START): Don't use ASM_FILE_START_1.
(ASM_FILE_START_1): Delete.
* config/i386/att.h, config/i386/sco5.h,
config/i386/sysv3.h
(ASM_FILE_START_1): Delete.
From-SVN: r67924
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/att.h | 4 | ||||
-rw-r--r-- | gcc/config/i386/sco5.h | 3 | ||||
-rw-r--r-- | gcc/config/i386/sysv3.h | 5 | ||||
-rw-r--r-- | gcc/config/svr3.h | 5 |
4 files changed, 0 insertions, 17 deletions
diff --git a/gcc/config/i386/att.h b/gcc/config/i386/att.h index 4e26d81..c95b6ad 100644 --- a/gcc/config/i386/att.h +++ b/gcc/config/i386/att.h @@ -54,10 +54,6 @@ do \ fputs ("\t.intel_syntax\n", FILE); \ } while (0) -/* Do use .optim by default on this machine. */ -#undef ASM_FILE_START_1 -#define ASM_FILE_START_1(FILE) fprintf (FILE, "\t.optim\n") - /* This is how to output an assembler line that says to advance the location counter to a multiple of 2**LOG bytes. */ diff --git a/gcc/config/i386/sco5.h b/gcc/config/i386/sco5.h index 89dae55..b4096a7 100644 --- a/gcc/config/i386/sco5.h +++ b/gcc/config/i386/sco5.h @@ -44,9 +44,6 @@ Boston, MA 02111-1307, USA. */ #define CTORS_SECTION_ASM_OP "\t.section\t.ctors, \"aw\"" #define DTORS_SECTION_ASM_OP "\t.section\t.dtors, \"aw\"" -#undef ASM_FILE_START_1 -#define ASM_FILE_START_1(FILE) - #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ do { \ diff --git a/gcc/config/i386/sysv3.h b/gcc/config/i386/sysv3.h index 406b0bf..8809181 100644 --- a/gcc/config/i386/sysv3.h +++ b/gcc/config/i386/sysv3.h @@ -46,11 +46,6 @@ Boston, MA 02111-1307, USA. */ #define PCC_BITFIELD_TYPE_MATTERS 1 -/* Don't write a `.optim' pseudo; this assembler doesn't handle them. */ - -#undef ASM_FILE_START_1 -#define ASM_FILE_START_1(FILE) - /* We want to be able to get DBX debugging information via -gstabs. */ #define DBX_DEBUGGING_INFO 1 diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h index a398069..434118d 100644 --- a/gcc/config/svr3.h +++ b/gcc/config/svr3.h @@ -47,13 +47,8 @@ Boston, MA 02111-1307, USA. #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ do { output_file_directive ((FILE), main_input_filename); \ - if (optimize) { ASM_FILE_START_1 (FILE); } \ } while (0) -/* By default, do nothing: a few machines support .optim, but not most. */ -#undef ASM_FILE_START_1 -#define ASM_FILE_START_1(FILE) - /* This says how to output an assembler line to define a global common symbol. */ /* We don't use ROUNDED because the standard compiler doesn't, |