aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/cp-tree.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-14 12:22:49 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-14 12:22:49 +0000
commitc44001c64356db774cbdc4c47d6ce7120b683f6c (patch)
tree44e1ac16bb3ef8859b6338f93a77d7ff661c9092 /gcc/cp/cp-tree.h
parent4a92766451afff12822ab80719988849ad9abea0 (diff)
downloadgcc-c44001c64356db774cbdc4c47d6ce7120b683f6c.zip
gcc-c44001c64356db774cbdc4c47d6ce7120b683f6c.tar.gz
gcc-c44001c64356db774cbdc4c47d6ce7120b683f6c.tar.bz2
cp-tree.h (SET_TMPL_ARG, [...]): Remove.
* cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS, CLASSTYPE_TEMPLATE_LEVEL): Remove. From-SVN: r98133
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r--gcc/cp/cp-tree.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h
index 08e554f..e1e15a8 100644
--- a/gcc/cp/cp-tree.h
+++ b/gcc/cp/cp-tree.h
@@ -2141,11 +2141,6 @@ struct lang_decl GTY(())
#define TMPL_ARG(ARGS, LEVEL, IDX) \
(TREE_VEC_ELT (TMPL_ARGS_LEVEL (ARGS, LEVEL), IDX))
-/* Set the IDXth element in the LEVELth level of ARGS to VAL. This
- macro does not work with single-level argument vectors. */
-#define SET_TMPL_ARG(ARGS, LEVEL, IDX, VAL) \
- (TREE_VEC_ELT (TREE_VEC_ELT ((ARGS), (LEVEL) - 1), (IDX)) = (VAL))
-
/* Given a single level of template arguments in NODE, return the
number of arguments. */
#define NUM_TMPL_ARGS(NODE) \
@@ -2187,10 +2182,6 @@ struct lang_decl GTY(())
#define DECL_TI_ARGS(NODE) TI_ARGS (DECL_TEMPLATE_INFO (NODE))
#define CLASSTYPE_TI_TEMPLATE(NODE) TI_TEMPLATE (CLASSTYPE_TEMPLATE_INFO (NODE))
#define CLASSTYPE_TI_ARGS(NODE) TI_ARGS (CLASSTYPE_TEMPLATE_INFO (NODE))
-#define ENUM_TI_TEMPLATE(NODE) \
- TI_TEMPLATE (ENUM_TEMPLATE_INFO (NODE))
-#define ENUM_TI_ARGS(NODE) \
- TI_ARGS (ENUM_TEMPLATE_INFO (NODE))
/* For a template instantiation TYPE, returns the TYPE corresponding
to the primary template. Otherwise returns TYPE itself. */
@@ -2763,9 +2754,6 @@ struct lang_decl GTY(())
/* Returns nonzero if NODE is a primary template. */
#define PRIMARY_TEMPLATE_P(NODE) (DECL_PRIMARY_TEMPLATE (NODE) == (NODE))
-#define CLASSTYPE_TEMPLATE_LEVEL(NODE) \
- (TREE_INT_CST_LOW (TREE_PURPOSE (CLASSTYPE_TI_TEMPLATE (NODE))))
-
/* Indicates whether or not (and how) a template was expanded for this
FUNCTION_DECL or VAR_DECL.
0=normal declaration, e.g. int min (int, int);