From: ebotcazou Date: Fri, 18 Dec 2015 18:04:03 +0000 (+0000) Subject: * gcc-interface/ada-tree.h (TYPE_DEBUG_TYPE): Remove duplicate. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1507b4d3fee9b9672109df24d04d1a73958ae37;p=thirdparty%2Fgcc.git * gcc-interface/ada-tree.h (TYPE_DEBUG_TYPE): Remove duplicate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231823 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 0ad84e2bb763..bdd5341b62d5 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2015-12-18 Eric Botcazou + + * gcc-interface/ada-tree.h (TYPE_DEBUG_TYPE): Remove duplicate. + 2015-12-17 Pierre-Marie de Rodat * gcc-interface/ada-tree.h diff --git a/gcc/ada/gcc-interface/ada-tree.h b/gcc/ada/gcc-interface/ada-tree.h index 830062791b97..715fbadc968d 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. */