diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-04-23 13:41:32 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-04-23 13:41:32 +0000 |
commit | af32d33a255a01ff49e4eb99536fcd4d2da6b26e (patch) | |
tree | 1150a03f407f8b57e2213eca1c31f3b9c2fa18c0 /gcc/reload.c | |
parent | 4a23ec27acc5f217ac165ca221b1579573c6587d (diff) | |
download | gcc-af32d33a255a01ff49e4eb99536fcd4d2da6b26e.tar.gz |
(push_reload): Fix last argument of the call to find_dummy_reload.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13962 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.c')
-rw-r--r-- | gcc/reload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index d4d0b1e2c9c..4a69835052a 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -1380,7 +1380,7 @@ push_reload (in, out, inloc, outloc, class, reload_reg_rtx[i] = find_dummy_reload (in, out, inloc, outloc, inmode, outmode, reload_reg_class[i], i, - reload_earlyclobbers[i] != NULL); + earlyclobber_operand_p (out)); /* If the outgoing register already contains the same value as the incoming one, we can dispense with loading it. |