diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2016-11-16 13:07:08 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2016-11-16 13:07:08 +0000 |
commit | 41c7cac56c4e6fd1f65281ae3a49bc2308be5191 (patch) | |
tree | 1acc46013971eef5f7ea5a8dbc857b58f238086d /gcc/ChangeLog | |
parent | d964ba07c74523684f25cc9f4860ea2f8dba2513 (diff) | |
download | gcc-41c7cac56c4e6fd1f65281ae3a49bc2308be5191.zip gcc-41c7cac56c4e6fd1f65281ae3a49bc2308be5191.tar.gz gcc-41c7cac56c4e6fd1f65281ae3a49bc2308be5191.tar.bz2 |
Use df_read_modify_subreg_p in cprop.c
local_cprop_find_used_regs punted on all multiword registers,
with the comment:
/* Setting a subreg of a register larger than word_mode leaves
the non-written words unchanged. */
But this only applies if the outer mode is smaller than the
inner mode. If they're the same size then writes to the subreg
are a normal full update.
This patch uses df_read_modify_subreg_p instead. A later patch
adds more uses of the same routine, but this part had a (positive)
effect on code generation for the testsuite whereas the others
seemed to be simple clean-ups.
gcc/
2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
Alan Hayward <alan.hayward@arm.com>
David Sherwood <david.sherwood@arm.com>
* cprop.c (local_cprop_find_used_regs): Use df_read_modify_subreg_p.
Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
Co-Authored-By: David Sherwood <david.sherwood@arm.com>
From-SVN: r242488
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a49e024..fe32d0f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-11-16 Richard Sandiford <richard.sandiford@arm.com> + Alan Hayward <alan.hayward@arm.com> + David Sherwood <david.sherwood@arm.com> + + * cprop.c (local_cprop_find_used_regs): Use df_read_modify_subreg_p. + 2016-11-16 Richard Biener <rguenther@suse.de> PR middle-end/78333 |