musl-cross-make/patches/gcc-7.2.0/0011-microblaze-pr65649.diff
Michael Forney 7b4c0f7abf Re-number gcc-7.2.0 patches and ensure they apply cleanly
This fixes a couple merge errors in j2.diff in the first rebase on 7.2.0:
- `sh[n1234]*eb-*-*` was written instead of `sh[j1234]*eb-*-*`.
- The TARGET_ATOMIC_* defines got moved to gcc/config/sh/sh.h, so move
  TARGET_ATOMIC_HARD_CAS there as well.
2019-02-12 18:38:36 -08:00

23 lines
829 B
Diff

diff --git a/gcc/config/microblaze/microblaze.c b/gcc/config/microblaze/microblaze.c
index d0f86fd4607..dc34ab960bf 100644
--- a/gcc/config/microblaze/microblaze.c
+++ b/gcc/config/microblaze/microblaze.c
@@ -2375,7 +2375,7 @@ print_operand (FILE * file, rtx op, int letter)
unsigned long value_long;
REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op),
value_long);
- fprintf (file, HOST_WIDE_INT_PRINT_HEX, value_long);
+ fprintf (file, "0x%lx", value_long);
}
else
{
@@ -2434,7 +2434,7 @@ print_operand (FILE * file, rtx op, int letter)
print_operand_address (file, XEXP (op, 0));
}
else if (letter == 'm')
- fprintf (file, HOST_WIDE_INT_PRINT_DEC, (1L << INTVAL (op)));
+ fprintf (file, "%ld", (1L << INTVAL (op)));
else
output_addr_const (file, op);
}