Commit 7641be90 by Ulrich Weigand Committed by Ulrich Weigand

s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second parameter of ASM_OUTPUT_SKIP must…

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
parent f26aca6d
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.
......
......@@ -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; \
\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment