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
This commit is contained in:
Jan Hubicka 2003-05-12 16:40:19 +02:00 committed by Jan Hubicka
parent c394cdb752
commit 212e206586
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
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.

View File

@ -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. */