From 9913cf73fe7e100c618ff9adf02861bcc12fc398 Mon Sep 17 00:00:00 2001 From: oliva Date: Tue, 11 Jan 2000 23:52:07 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31340 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/resource.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/resource.c') diff --git a/gcc/resource.c b/gcc/resource.c index e0e54428a03..719bd2090c2 100644 --- a/gcc/resource.c +++ b/gcc/resource.c @@ -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); -- cgit v1.2.1