Commit 07570c39 by Alexandre Oliva Committed by Alexandre Oliva

resource.c (mark_referenced_resources): Mark a set strict_low_part as used.

* resource.c (mark_referenced_resources): Mark a set strict_low_part
as used.
* config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
strict_low_part when possible.

From-SVN: r31340
parent a5bfff0c
2000-01-11 Alexandre Oliva <oliva@lsd.ic.unicamp.br>, Richard Henderson <rth@cygnus.com>
* resource.c (mark_referenced_resources): Mark a set strict_low_part
as used.
* config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
strict_low_part when possible.
2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* alias.c: PROTO -> PARAMS.
......
......@@ -4341,8 +4341,6 @@ ix86_expand_setcc (code, unordered, dest)
*/
type = 0;
/* %%% reload problems with in-out. Revisit. */
type = 1;
if (GET_MODE (dest) == QImode)
type = 2;
......
......@@ -272,7 +272,9 @@ mark_referenced_resources (x, res, include_delayed_effects)
mark_referenced_resources (SET_SRC (x), res, 0);
x = SET_DEST (x);
if (GET_CODE (x) == SIGN_EXTRACT || GET_CODE (x) == ZERO_EXTRACT)
if (GET_CODE (x) == SIGN_EXTRACT
|| GET_CODE (x) == ZERO_EXTRACT
|| GET_CODE (x) == STRICT_LOW_PART)
mark_referenced_resources (x, res, 0);
else if (GET_CODE (x) == SUBREG)
x = SUBREG_REG (x);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment