diff options
author | Jeff Law <law@gcc.gnu.org> | 1999-10-13 00:48:26 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-10-13 00:48:26 -0600 |
commit | df1f639fb174aaf4309b92b865a36d3620b9b274 (patch) | |
tree | c83363df000cfbe0036a5037b404d814913c87f7 /gcc/reload1.c | |
parent | 57850c857cf3384f2585b871bbfa7f23781b1bb7 (diff) | |
download | gcc-df1f639fb174aaf4309b92b865a36d3620b9b274.zip gcc-df1f639fb174aaf4309b92b865a36d3620b9b274.tar.gz gcc-df1f639fb174aaf4309b92b865a36d3620b9b274.tar.bz2 |
reload_out[i]->rld[i].out.
From-SVN: r29936
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 8727770..de39ef6 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5339,7 +5339,7 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, time2 = MAX_RECOG_OPERANDS * 4 + 4; /* Earlyclobbered outputs must conflict with inputs. */ for (j = 0; j < n_earlyclobbers; j++) - if (reload_out[i] == reload_earlyclobbers[j]) + if (rld[i].out == reload_earlyclobbers[j]) time2 = MAX_RECOG_OPERANDS * 4 + 3; break; |