Commit 212e2065 by Jan Hubicka Committed by Jan Hubicka

darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT

	* rs6000/darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT
	* mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
	* mips/mips.h (ASM_OUTPUT_SKIP):  Fix typo in the previous patch.

From-SVN: r66720
parent c394cdb7
Mon May 12 15:57:54 CEST 2003 Jan Hubicka <jh@suse.cz>
* rs6000/darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT
* mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
* mips/mips.h (ASM_OUTPUT_SKIP): Fix typo in the previous patch.
......
......@@ -164,7 +164,8 @@ do { \
#define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
do { fputs (".comm ", (FILE)); \
RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \
fprintf ((FILE), ",%d\n", (SIZE)); } while (0)
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
(SIZE)); } while (0)
/* Override the standard rs6000 definition. */
......
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