diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/s390/s390.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20a0fed..ee180e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-13 Ulrich Weigand <uweigand@de.ibm.com> + + * config/s390/s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second + parameter of ASM_OUTPUT_SKIP must have type unsigned HOST_WIDE_INT. + 2003-05-12 DJ Delorie <dj@redhat.com> * expr.c (move_by_pieces): Honor the alignment of TO and FROM. diff --git a/gcc/config/s390/s390.h b/gcc/config/s390/s390.h index fbf9865..47998d4 100644 --- a/gcc/config/s390/s390.h +++ b/gcc/config/s390/s390.h @@ -1012,7 +1012,7 @@ extern int s390_nr_constants; { \ assemble_integer (EXP, GET_MODE_SIZE (MODE), ALIGN, 1); \ if (GET_MODE_SIZE (MODE) == 1) \ - ASM_OUTPUT_SKIP ((FILE), 1); \ + ASM_OUTPUT_SKIP ((FILE), (unsigned HOST_WIDE_INT)1); \ } \ break; \ \ |