diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2003-11-02 19:47:57 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-11-02 19:47:57 +0000 |
commit | 9a623a652b10e948687b0e86944d4555b07b76c0 (patch) | |
tree | 73e06e18b44469f105c8381c8c58d1964958fc73 /gcc/print-rtl.c | |
parent | 634879c891f064bd93eeca377d7654d04c8ce936 (diff) | |
download | gcc-9a623a652b10e948687b0e86944d4555b07b76c0.tar.gz |
print-rtl.c (print_rtx): Call PRINT_REG with second argument -1.
* print-rtl.c (print_rtx): Call PRINT_REG with second argument -1.
* config/i386/i386.c (print_reg): Abort on a virtual register
if code != -1; not if file == asm_out_file.
* config/i386/i386.h (PRINT_REG): Document meaning of CODE == -1.
(DEBUG_PRINT_REG): Delete, unused.
From-SVN: r73203
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 4d05136cf3f..5c3b8d4443e 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) |