diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2003-05-13 18:36:45 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2003-05-13 18:36:45 +0000 |
commit | 7641be90af423161897bcb7e1c41b6a74670ae91 (patch) | |
tree | 11f30613cba2627d98335ba3bcc051e3fa788ad0 /gcc | |
parent | f26aca6db222608dad580009b47b21b5774d9baa (diff) | |
download | gcc-7641be90af423161897bcb7e1c41b6a74670ae91.zip gcc-7641be90af423161897bcb7e1c41b6a74670ae91.tar.gz gcc-7641be90af423161897bcb7e1c41b6a74670ae91.tar.bz2 |
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
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; \ \ |