Commit 3eb75a73 by Kaveh R. Ghazi Committed by Kaveh Ghazi

m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Fix incorrect argument order in call to fprintf.

	* m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Fix incorrect argument
	order in call to fprintf.

From-SVN: r56298
parent be3a0ce2
2002-08-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Fix incorrect argument
order in call to fprintf.
2002-08-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/sparc/sol2.h (SUBTARGET_EXTRA_SPECS): Define.
......
......@@ -1734,7 +1734,7 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS,
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) \
do { \
fprintf (FILE_ASM_OP, FILE); \
fputs (FILE_ASM_OP, FILE); \
output_quoted_string (FILE, NAME); \
putc ('\n', FILE); \
} while (0)
......
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