From: Alan Modra Date: Sat, 17 Jan 2015 03:04:55 +0000 (+1030) Subject: Revert last change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aed381270dc77cc5dd8f1a761fa66eeb5ebdc189;p=gcc.git Revert last change From-SVN: r219792 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b9053a81b3..12bd23ac5cd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-01-17 Alan Modra + + * cprop.c (do_local_cprop): Revert last change. + 2015-01-16 DJ Delorie Nick Clifton diff --git a/gcc/cprop.c b/gcc/cprop.c index e8182dbfb8f..c9fb2fc5129 100644 --- a/gcc/cprop.c +++ b/gcc/cprop.c @@ -1189,12 +1189,10 @@ do_local_cprop (rtx x, rtx_insn *insn) rtx newreg = NULL, newcnst = NULL; /* Rule out USE instructions and ASM statements as we don't want to - change the hard registers mentioned, and don't change fixed hard - registers. */ + change the hard registers mentioned. */ if (REG_P (x) && (REGNO (x) >= FIRST_PSEUDO_REGISTER || (GET_CODE (PATTERN (insn)) != USE - && !fixed_regs[REGNO (x)] && asm_noperands (PATTERN (insn)) < 0))) { cselib_val *val = cselib_lookup (x, GET_MODE (x), 0, VOIDmode);