diff options
author | Richard Guenther <rguenther@suse.de> | 2010-09-10 15:40:05 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-09-10 15:40:05 +0000 |
commit | bedbdfcfb63b3a05dc58326f424d5ab07f0d05ce (patch) | |
tree | efaf9c669cfb8da62589ecfaa1ee5183abefa6cc /gcc/tree.h | |
parent | cf6a409750631fd7ae7b168a94967a33d509be5d (diff) | |
download | gcc-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.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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) |