This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[obv] remove TREE_RTL_OPERAND_CHECK
- From: Nathan Froyd <froydnj at codesourcery dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 15 Jul 2010 08:57:33 -0700
- Subject: [obv] remove TREE_RTL_OPERAND_CHECK
Looking around in tree.h made me notice TREE_RTL_OPERAND_CHECK.
Grepping made me notice that it's defined and not used. Bootstrapping
on x86_64-unknown-linux-gnu confirmed my grepping. Committing it as
obvious made me feel warm and fuzzy. :)
-Nathan
* tree.h (TREE_RTL_OPERAND_CHECK): Delete.
Index: tree.h
===================================================================
--- tree.h (revision 162223)
+++ tree.h (working copy)
@@ -838,17 +838,6 @@ enum tree_node_structure_enum {
__FILE__, __LINE__, __FUNCTION__); \
&__t->exp.operands[__i]; }))
-#define TREE_RTL_OPERAND_CHECK(T, CODE, I) __extension__ \
-(*(rtx *) \
- ({__typeof (T) const __t = (T); \
- const int __i = (I); \
- if (TREE_CODE (__t) != (CODE)) \
- tree_check_failed (__t, __FILE__, __LINE__, __FUNCTION__, (CODE), 0); \
- if (__i < 0 || __i >= TREE_OPERAND_LENGTH (__t)) \
- tree_operand_check_failed (__i, __t, \
- __FILE__, __LINE__, __FUNCTION__); \
- &__t->exp.operands[__i]; }))
-
/* Nodes are chained together for many purposes.
Types are chained together to record them for being output to the debugger
(see the function `chain_type').
@@ -930,7 +919,6 @@ extern void omp_clause_range_check_faile
#define TREE_VEC_ELT_CHECK(T, I) ((T)->vec.a[I])
#define TREE_OPERAND_CHECK(T, I) ((T)->exp.operands[I])
#define TREE_OPERAND_CHECK_CODE(T, CODE, I) ((T)->exp.operands[I])
-#define TREE_RTL_OPERAND_CHECK(T, CODE, I) (*(rtx *) &((T)->exp.operands[I]))
#define OMP_CLAUSE_ELT_CHECK(T, i) ((T)->omp_clause.ops[i])
#define OMP_CLAUSE_RANGE_CHECK(T, CODE1, CODE2) (T)
#define OMP_CLAUSE_SUBCODE_CHECK(T, CODE) (T)
Index: ChangeLog
===================================================================