aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.def
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2012-04-21 18:55:18 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2012-04-21 18:55:18 +0000
commit9e412ca3ebe589537430ce89c4342ca08f251d69 (patch)
treeb0d6f2ebda9f50cb79a963c6fdd93ec04cda0025 /gcc/rtl.def
parent1410c222604e2182f74242026fd924c717ced000 (diff)
downloadgcc-9e412ca3ebe589537430ce89c4342ca08f251d69.zip
gcc-9e412ca3ebe589537430ce89c4342ca08f251d69.tar.gz
gcc-9e412ca3ebe589537430ce89c4342ca08f251d69.tar.bz2
re PR bootstrap/53021 (bootstrap failure on Linux/ia32)
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. From-SVN: r186657
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r--gcc/rtl.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def
index 83326b3..955e8e4 100644
--- a/gcc/rtl.def
+++ b/gcc/rtl.def
@@ -110,7 +110,7 @@ DEF_RTL_EXPR(INSN_LIST, "insn_list", "ue", RTX_EXTRA)
DEF_RTL_EXPR(SEQUENCE, "sequence", "E", RTX_EXTRA)
/* Represents a non-global base address. This is only used in alias.c. */
-DEF_RTL_EXPR(ADDRESS, "address", "w", RTX_EXTRA)
+DEF_RTL_EXPR(ADDRESS, "address", "i", RTX_EXTRA)
/* ----------------------------------------------------------------------
Expression types used for things in the instruction chain.