aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2005-04-15 16:35:26 +0000
committerPaolo Bonzini <bonzini@gcc.gnu.org>2005-04-15 16:35:26 +0000
commit0ad420fe6c4d9f1fa3dbbbca2c62103d18ecfda1 (patch)
tree1a989db5b4d6407b4de15f8fa928cc9e0a9db64c
parentc36893509f732bc4c4065832ae5b1123bf0dfed2 (diff)
downloadgcc-0ad420fe6c4d9f1fa3dbbbca2c62103d18ecfda1.zip
gcc-0ad420fe6c4d9f1fa3dbbbca2c62103d18ecfda1.tar.gz
gcc-0ad420fe6c4d9f1fa3dbbbca2c62103d18ecfda1.tar.bz2
genattrtab.c (ATTR_EQ_ATTR_P): Remove.
2005-05-15 Paolo Bonzini <bonzini@gnu.org> * genattrtab.c (ATTR_EQ_ATTR_P): Remove. (attr_copy_rtx): Do not use it. From-SVN: r98191
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/genattrtab.c6
2 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 774ff0e..dd704f9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-15 Paolo Bonzini <bonzini@gnu.org>
+
+ * genattrtab.c (ATTR_EQ_ATTR_P): Remove.
+ (attr_copy_rtx): Do not use it.
+
2005-04-15 Andrew Macleod <amacleod@redhat.com>
* doc/tree-ssa.texi: Grammer/abbreviation updates.
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c
index a45986c..793841b 100644
--- a/gcc/genattrtab.c
+++ b/gcc/genattrtab.c
@@ -90,14 +90,11 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
`in_struct' (ATTR_CURR_SIMPLIFIED_P): This rtx is fully simplified
for the insn code currently being processed (see optimize_attrs).
`return_val' (ATTR_PERMANENT_P): This rtx is permanent and unique
- (see attr_rtx).
- `volatil' (ATTR_EQ_ATTR_P): During simplify_by_exploding the value of an
- EQ_ATTR rtx is true if !volatil and false if volatil. */
+ (see attr_rtx). */
#define ATTR_IND_SIMPLIFIED_P(RTX) (RTX_FLAG((RTX), unchanging))
#define ATTR_CURR_SIMPLIFIED_P(RTX) (RTX_FLAG((RTX), in_struct))
#define ATTR_PERMANENT_P(RTX) (RTX_FLAG((RTX), return_val))
-#define ATTR_EQ_ATTR_P(RTX) (RTX_FLAG((RTX), volatil))
#if 0
#define strcmp_check(S1, S2) ((S1) == (S2) \
@@ -731,7 +728,6 @@ attr_copy_rtx (rtx orig)
ATTR_IND_SIMPLIFIED_P (copy) = ATTR_IND_SIMPLIFIED_P (orig);
ATTR_CURR_SIMPLIFIED_P (copy) = ATTR_CURR_SIMPLIFIED_P (orig);
ATTR_PERMANENT_P (copy) = ATTR_PERMANENT_P (orig);
- ATTR_EQ_ATTR_P (copy) = ATTR_EQ_ATTR_P (orig);
format_ptr = GET_RTX_FORMAT (GET_CODE (copy));