* reload1.c (reload_combine): Re-add line that got accidentally lost.
From-SVN: r22588
This commit is contained in:
parent
b370501f72
commit
2abbc1bd67
|
@ -1,3 +1,7 @@
|
|||
Fri Sep 25 17:35:23 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
|
||||
|
||||
* reload1.c (reload_combine): Re-add line that got accidentally lost.
|
||||
|
||||
Fri Sep 25 10:43:47 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* cccp.c (pedwarn_with_file_and_line): For !__STDC__ case, avoid
|
||||
|
|
|
@ -9274,7 +9274,8 @@ reload_combine ()
|
|||
|
||||
First, check that we have (set (REGX) (PLUS (REGX) (REGY)))
|
||||
and that we know all uses of REGX before it dies. */
|
||||
if ((set = single_set (insn)) != NULL_RTX
|
||||
set = single_set (insn);
|
||||
if (set != NULL_RTX
|
||||
&& GET_CODE (SET_DEST (set)) == REG
|
||||
&& (HARD_REGNO_NREGS (REGNO (SET_DEST (set)),
|
||||
GET_MODE (SET_DEST (set)))
|
||||
|
|
Loading…
Reference in New Issue