Commit ed70c245 by Zack Weinberg

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
parent 267409e8
2003-06-13 Zack Weinberg <zack@codesourcery.com>
* 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.
2003-06-13 Kelley Cook <kelleycook@wideopenwest.com> 2003-06-13 Kelley Cook <kelleycook@wideopenwest.com>
* config/i386/bsd.h: Remove ASM_FILE_START. * config/i386/bsd.h: Remove ASM_FILE_START.
......
...@@ -54,10 +54,6 @@ do \ ...@@ -54,10 +54,6 @@ do \
fputs ("\t.intel_syntax\n", FILE); \ fputs ("\t.intel_syntax\n", FILE); \
} while (0) } 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 /* This is how to output an assembler line
that says to advance the location counter that says to advance the location counter
to a multiple of 2**LOG bytes. */ to a multiple of 2**LOG bytes. */
......
...@@ -44,9 +44,6 @@ Boston, MA 02111-1307, USA. */ ...@@ -44,9 +44,6 @@ Boston, MA 02111-1307, USA. */
#define CTORS_SECTION_ASM_OP "\t.section\t.ctors, \"aw\"" #define CTORS_SECTION_ASM_OP "\t.section\t.ctors, \"aw\""
#define DTORS_SECTION_ASM_OP "\t.section\t.dtors, \"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 #undef ASM_FILE_START
#define ASM_FILE_START(FILE) \ #define ASM_FILE_START(FILE) \
do { \ do { \
......
...@@ -46,11 +46,6 @@ Boston, MA 02111-1307, USA. */ ...@@ -46,11 +46,6 @@ Boston, MA 02111-1307, USA. */
#define PCC_BITFIELD_TYPE_MATTERS 1 #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. */ /* We want to be able to get DBX debugging information via -gstabs. */
#define DBX_DEBUGGING_INFO 1 #define DBX_DEBUGGING_INFO 1
......
...@@ -47,13 +47,8 @@ Boston, MA 02111-1307, USA. ...@@ -47,13 +47,8 @@ Boston, MA 02111-1307, USA.
#undef ASM_FILE_START #undef ASM_FILE_START
#define ASM_FILE_START(FILE) \ #define ASM_FILE_START(FILE) \
do { output_file_directive ((FILE), main_input_filename); \ do { output_file_directive ((FILE), main_input_filename); \
if (optimize) { ASM_FILE_START_1 (FILE); } \
} while (0) } 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 /* This says how to output an assembler line
to define a global common symbol. */ to define a global common symbol. */
/* We don't use ROUNDED because the standard compiler doesn't, /* We don't use ROUNDED because the standard compiler doesn't,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment