diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-09 16:53:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-09 16:53:39 +0000 |
commit | eac02e59606def2611a7bc53ea29dbb28f860f1c (patch) | |
tree | bc2187e304f376d83cd7d041842fca8ee17b122e /gcc | |
parent | 9c45842f24b02d9b9d8d7b20449b2d4117fc5bf8 (diff) | |
download | gcc-eac02e59606def2611a7bc53ea29dbb28f860f1c.zip gcc-eac02e59606def2611a7bc53ea29dbb28f860f1c.tar.gz gcc-eac02e59606def2611a7bc53ea29dbb28f860f1c.tar.bz2 |
* cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
From-SVN: r97907
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4f5b617..19ac5ed 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -2,6 +2,8 @@ * cp-tree.h (cxx_alignof): Remove. + * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove. + 2005-04-08 Ian Lance Taylor <ian@airs.com> * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT, diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index e989e5f..b2c8e82 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -1795,10 +1795,6 @@ struct lang_decl GTY(()) #define DECL_HAS_IN_CHARGE_PARM_P(NODE) \ (DECL_LANG_SPECIFIC (NODE)->decl_flags.has_in_charge_parm_p) -/* Nonzero if NODE is an overloaded `operator delete[]' function. */ -#define DECL_ARRAY_DELETE_OPERATOR_P(NODE) \ - (DECL_OVERLOADED_OPERATOR_P (NODE) == VEC_DELETE_EXPR) - /* Nonzero for _DECL means that this decl appears in (or will appear in) as a member in a RECORD_TYPE or UNION_TYPE node. It is also for detecting circularity in case members are multiply defined. In the |