diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-04-21 18:55:18 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-04-21 18:55:18 +0000 |
commit | 86e87ef6099fefa07d967a33b48ba2aefd18ab97 (patch) | |
tree | b0d6f2ebda9f50cb79a963c6fdd93ec04cda0025 /gcc/ChangeLog | |
parent | 87e440281cb26fcad5bc61a9e3794d34d6e76dc1 (diff) | |
download | gcc-86e87ef6099fefa07d967a33b48ba2aefd18ab97.tar.gz |
gcc/
PR bootstrap/53021
* rtl.def (ADDRESS): Use "i" rather than "w".
* rtl.h (find_base_term): Delete.
(may_be_sp_based_p): Declare.
* rtl.c (rtx_code_size): Remove ADDRESS special case.
* alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP)
(UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Move to...
* alias.c: ...here.
(find_base_term): Make static.
(may_be_sp_based_p): New function.
* dse.c (record_store): Use it.
* store-motion.c (store_killed_in_insn): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186657 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ab7ad93ad12..9133f1bb7bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,20 @@ 2012-04-21 Richard Sandiford <rdsandiford@googlemail.com> + PR bootstrap/53021 + * rtl.def (ADDRESS): Use "i" rather than "w". + * rtl.h (find_base_term): Delete. + (may_be_sp_based_p): Declare. + * rtl.c (rtx_code_size): Remove ADDRESS special case. + * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP) + (UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Move to... + * alias.c: ...here. + (find_base_term): Make static. + (may_be_sp_based_p): New function. + * dse.c (record_store): Use it. + * store-motion.c (store_killed_in_insn): Likewise. + +2012-04-21 Richard Sandiford <rdsandiford@googlemail.com> + * fold-const.c (fold_checksum_tree): Fix VECTOR_CST case. 2012-04-21 Manuel López-Ibáñez <manu@gcc.gnu.org> |