elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.

* mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
	* mips/mips.h (ASM_OUTPUT_SKIP):  Fix typo in the previous patch.

From-SVN: r66717
This commit is contained in:
Jan Hubicka 2003-05-12 15:59:14 +02:00 committed by Jan Hubicka
parent 70498da397
commit c394cdb752
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Mon May 12 15:57:54 CEST 2003 Jan Hubicka <jh@suse.cz>
* mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
* mips/mips.h (ASM_OUTPUT_SKIP): Fix typo in the previous patch.
2003-05-12 Roger Sayle <roger@eyesopen.com>
* doc/rtl.texi: Document zero_extract as a valid destination

View File

@ -106,7 +106,7 @@ do { \
#ifndef ASM_OUTPUT_ALIGNED_BSS
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
do { \
if (SIZE > 0 && SIZE <= mips_section_threshold) \
if (SIZE > 0 && SIZE <= (unsigned HOST_WIDE_INT)mips_section_threshold)\
sbss_section (); \
else \
bss_section (); \

View File

@ -4025,7 +4025,7 @@ do { \
#undef ASM_OUTPUT_SKIP
#define ASM_OUTPUT_SKIP(STREAM,SIZE) \
fprintf (STREAM, "\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"%u\n", (SIZE))
fprintf (STREAM, "\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
/* This is how to output a string. */
#undef ASM_OUTPUT_ASCII