diff options
author | Jeff Law <law@redhat.com> | 2020-06-30 23:03:33 -0600 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2020-06-30 23:03:33 -0600 |
commit | a580aca1b6dad32e621d4c8c8ceaab6d0c52f6c1 (patch) | |
tree | fa725c2b30d15608b1b3508e20bd73bb1f3cfc86 /gcc/config/pa | |
parent | 83c25f27c442ce567829491fc1b4703f51b9bea6 (diff) | |
download | gcc-a580aca1b6dad32e621d4c8c8ceaab6d0c52f6c1.zip gcc-a580aca1b6dad32e621d4c8c8ceaab6d0c52f6c1.tar.gz gcc-a580aca1b6dad32e621d4c8c8ceaab6d0c52f6c1.tar.bz2 |
Fix bootstrap failure on PA
gcc/
* config/pa/pa.c (pa_emit_move_sequence): Drop register keyword.
(pa_output_ascii): Likewise.
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 711234e..07d3287 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -1631,9 +1631,9 @@ pa_cannot_force_const_mem (machine_mode mode ATTRIBUTE_UNUSED, rtx x) int pa_emit_move_sequence (rtx *operands, machine_mode mode, rtx scratch_reg) { - register rtx operand0 = operands[0]; - register rtx operand1 = operands[1]; - register rtx tem; + rtx operand0 = operands[0]; + rtx operand1 = operands[1]; + rtx tem; /* We can only handle indexed addresses in the destination operand of floating point stores. Thus, we need to break out indexed @@ -3381,7 +3381,7 @@ pa_output_ascii (FILE *file, const char *p, int size) int io = 0; for (io = 0, co = 0; io < MIN (4, size - i); io++) { - register unsigned int c = (unsigned char) p[i + io]; + unsigned int c = (unsigned char) p[i + io]; if (c == '\"' || c == '\\') partial_output[co++] = '\\'; |