Commit 6b5596d5 by Jonas Pfeil Committed by Jeff Law

microblaze.h (ASM_OUTPUT_SKIP): Use HOST_WIDE_PRINT_UNSIGNED.

	* config/microblaze/microblaze.h (ASM_OUTPUT_SKIP): Use
	HOST_WIDE_PRINT_UNSIGNED.

From-SVN: r276011
parent bd7a5c5d
2019-09-20 Jonas Pfeil <jonas.pfeil@uli-ulm.de>
* config/microblaze/microblaze.h (ASM_OUTPUT_SKIP): Use
HOST_WIDE_PRINT_UNSIGNED.
2019-09-20 John David Anglin <danglin@gcc.gnu.org>
* config/pa/pa.c (pa_trampoline_init): Remove spurious extended
......
......@@ -695,7 +695,7 @@ do { \
fprintf (STREAM, "\t.align\t%d\n", (LOG))
#define ASM_OUTPUT_SKIP(STREAM,SIZE) \
fprintf (STREAM, "\t.space\t%lu\n", (SIZE))
fprintf (STREAM, "\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED "\n", (SIZE))
#define ASCII_DATA_ASM_OP "\t.ascii\t"
#define STRING_ASM_OP "\t.asciz\t"
......
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