diff options
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 4d05136..5c3b8d4 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -386,7 +386,7 @@ print_rtx (rtx in_rtx) if (GET_CODE (in_rtx) == REG && value < FIRST_PSEUDO_REGISTER) { fputc (' ', outfile); - PRINT_REG (in_rtx, 0, outfile); + PRINT_REG (in_rtx, -1, outfile); } else if (GET_CODE (in_rtx) == REG && value <= LAST_VIRTUAL_REGISTER) |