aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2010-09-10 15:40:05 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2010-09-10 15:40:05 +0000
commitbedbdfcfb63b3a05dc58326f424d5ab07f0d05ce (patch)
treeefaf9c669cfb8da62589ecfaa1ee5183abefa6cc /gcc/tree.h
parentcf6a409750631fd7ae7b168a94967a33d509be5d (diff)
downloadgcc-bedbdfcfb63b3a05dc58326f424d5ab07f0d05ce.zip
gcc-bedbdfcfb63b3a05dc58326f424d5ab07f0d05ce.tar.gz
gcc-bedbdfcfb63b3a05dc58326f424d5ab07f0d05ce.tar.bz2
tree.c (make_vector_type): Do not set TYPE_DEBUG_REPRESENTATION_TYPE.
2010-09-10 Richard Guenther <rguenther@suse.de> * tree.c (make_vector_type): Do not set TYPE_DEBUG_REPRESENTATION_TYPE. * tree.h (TYPE_DEBUG_REPRESENTATION_TYPE): Remove. * lto-streamer-out.c (lto_output_ts_type_tree_pointers): Do not stream TYPE_DEBUG_REPRESENTATION_TYPE. * lto-streamer-in.c (lto_input_ts_type_tree_pointers): Likewise. From-SVN: r164193
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 4fc6725..a75a852 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -2118,12 +2118,6 @@ extern enum machine_mode vector_type_mode (const_tree);
#define TYPE_IBIT(NODE) (GET_MODE_IBIT (TYPE_MODE (NODE)))
#define TYPE_FBIT(NODE) (GET_MODE_FBIT (TYPE_MODE (NODE)))
-/* For a VECTOR_TYPE node, this describes a different type which is emitted
- in the debugging output. We use this to describe a vector as a
- structure containing an array. */
-#define TYPE_DEBUG_REPRESENTATION_TYPE(NODE) \
- (VECTOR_TYPE_CHECK (NODE)->type.values)
-
/* For record and union types, information about this type, as a base type
for itself. */
#define TYPE_BINFO(NODE) (RECORD_OR_UNION_CHECK(NODE)->type.binfo)