Commit 237de4b2 by Tom Wood

(ASM_FILE_START): Don't output a .file directive.

	That's used by the assembler for error reporting.

From-SVN: r4190
parent 0e02aa7e
...@@ -225,9 +225,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -225,9 +225,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
fprintf (FILE, ".reference .destructors_used\n"); \ fprintf (FILE, ".reference .destructors_used\n"); \
} while (0) } while (0)
/* Don't output a .file directive. That is only used by the assembler for
error reporting. */
#undef ASM_FILE_START #undef ASM_FILE_START
#define ASM_FILE_START(FILE) \ #define ASM_FILE_START(FILE)
fprintf (FILE, "\t.file\t\"%s\"\n", dump_base_name);
#undef ASM_FILE_END #undef ASM_FILE_END
#define ASM_FILE_END(FILE) \ #define ASM_FILE_END(FILE) \
......
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