diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2015-12-18 18:04:03 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2015-12-18 18:04:03 +0000 |
commit | feac22a7825a7f8d385b1a2c2558d2bb4089548c (patch) | |
tree | 4d7d281aa5f9692f1c39a38804cde3ea1df322b0 /gcc/ada/gcc-interface | |
parent | 1e5154e768401d94f70f07aae5e518739bc14f6b (diff) | |
download | gcc-feac22a7825a7f8d385b1a2c2558d2bb4089548c.zip gcc-feac22a7825a7f8d385b1a2c2558d2bb4089548c.tar.gz gcc-feac22a7825a7f8d385b1a2c2558d2bb4089548c.tar.bz2 |
* gcc-interface/ada-tree.h (TYPE_DEBUG_TYPE): Remove duplicate.
From-SVN: r231823
Diffstat (limited to 'gcc/ada/gcc-interface')
-rw-r--r-- | gcc/ada/gcc-interface/ada-tree.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gcc/ada/gcc-interface/ada-tree.h b/gcc/ada/gcc-interface/ada-tree.h index 8300627..715fbad 100644 --- a/gcc/ada/gcc-interface/ada-tree.h +++ b/gcc/ada/gcc-interface/ada-tree.h @@ -369,13 +369,6 @@ do { \ #define SET_TYPE_ADA_SIZE(NODE, X) \ SET_TYPE_LANG_SPECIFIC (RECORD_OR_UNION_CHECK (NODE), X) -/* For types with TYPE_CAN_HAVE_DEBUG_TYPE_P, this is the type to use in - debugging information. */ -#define TYPE_DEBUG_TYPE(NODE) \ - GET_TYPE_LANG_SPECIFIC2(NODE) -#define SET_TYPE_DEBUG_TYPE(NODE, X) \ - SET_TYPE_LANG_SPECIFIC2(NODE, X) - /* For an INTEGER_TYPE with TYPE_IS_FIXED_POINT_P, this is the value of the scale factor. Modular types, index types (sizetype subtypes) and fixed-point types are totally distinct types, so there is no problem with @@ -388,17 +381,17 @@ do { \ /* For types with TYPE_CAN_HAVE_DEBUG_TYPE_P, this is the type to use in debugging information. */ #define TYPE_DEBUG_TYPE(NODE) \ - GET_TYPE_LANG_SPECIFIC2(NODE) + GET_TYPE_LANG_SPECIFIC2 (NODE) #define SET_TYPE_DEBUG_TYPE(NODE, X) \ - SET_TYPE_LANG_SPECIFIC2(NODE, X) + SET_TYPE_LANG_SPECIFIC2 (NODE, X) /* For types with TYPE_IMPLEMENTS_PACKED_ARRAY_P, this is the original packed array type. Note that this predicate is trou for original packed array types, so these cannot have a debug type. */ #define TYPE_ORIGINAL_PACKED_ARRAY(NODE) \ - GET_TYPE_LANG_SPECIFIC2(NODE) + GET_TYPE_LANG_SPECIFIC2 (NODE) #define SET_TYPE_ORIGINAL_PACKED_ARRAY(NODE, X) \ - SET_TYPE_LANG_SPECIFIC2(NODE, X) + SET_TYPE_LANG_SPECIFIC2 (NODE, X) /* Flags added to decl nodes. */ |