From: Ulrich Weigand Date: Tue, 13 May 2003 18:36:45 +0000 (+0000) Subject: s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second parameter of ASM_OUTPUT_SKIP must... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7641be90af423161897bcb7e1c41b6a74670ae91;p=gcc.git s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second parameter of ASM_OUTPUT_SKIP must have type unsigned HOST_WIDE_INT. * config/s390/s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second parameter of ASM_OUTPUT_SKIP must have type unsigned HOST_WIDE_INT. From-SVN: r66771 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20a0fedd5d6..ee180e1ddc0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-13 Ulrich Weigand + + * 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 * 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 fbf98657bdd..47998d407c2 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; \ \