OSDN Git Service

* rs6000/darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 12 May 2003 14:40:19 +0000 (14:40 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 12 May 2003 14:40:19 +0000 (14:40 +0000)
* mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
* mips/mips.h (ASM_OUTPUT_SKIP):  Fix typo in the previous patch.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66720 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/darwin.h

index 6c3b37c..b631cbd 100644 (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.
 
index 27e3da7..20f1ca2 100644 (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.  */