Commit 57dd137f by Diego Novillo Committed by Diego Novillo

att.h (ASM_FILE_START): Define.

2000-10-23  Diego Novillo  <dnovillo@cygnus.com>

	* config/i386/att.h (ASM_FILE_START): Define.

From-SVN: r37023
parent d984704d
2000-10-23 Diego Novillo <dnovillo@cygnus.com>
* config/i386/att.h (ASM_FILE_START): Define.
2000-10-23 Diego Novillo <dnovillo@cygnus.com>
* config/i386/linux.h (ASM_FILE_START): Define.
Wed Oct 18 11:16:40 2000 Donald Lindsay <dlindsay@cygnus.com>
......
......@@ -48,6 +48,17 @@ do \
fprintf ((FILE), "\n"); \
} while (0)
/* Output at beginning of assembler file. */
/* The .file command should always begin the output. */
#undef ASM_FILE_START
#define ASM_FILE_START(FILE) \
do { \
output_file_directive (FILE, main_input_filename); \
if (target_flags & MASK_INTEL_SYNTAX) \
fputs ("\t.intel_syntax\n", FILE); \
fprintf (FILE, "\t.version\t\"01.01\"\n"); \
} 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")
......
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