aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/gigi.h
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2016-01-28 11:59:14 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2016-01-28 11:59:14 +0000
commite0ef6912de884d6524c64df043c3d56616fb96ef (patch)
treeabaa8d9aea6b5abdc7f3d536544b71a3dda86620 /gcc/ada/gcc-interface/gigi.h
parentc428f91cb752d9b831df83f057b73e2815f2adad (diff)
downloadgcc-e0ef6912de884d6524c64df043c3d56616fb96ef.zip
gcc-e0ef6912de884d6524c64df043c3d56616fb96ef.tar.gz
gcc-e0ef6912de884d6524c64df043c3d56616fb96ef.tar.bz2
gigi.h (enum attr_type): Rename into...
* gcc-interface/gigi.h (enum attr_type): Rename into... (enum attrib_type): ...this. (struct attrib): Adjust. * gcc-interface/decl.c (prepend_one_attribute): Likewise. From-SVN: r232923
Diffstat (limited to 'gcc/ada/gcc-interface/gigi.h')
-rw-r--r--gcc/ada/gcc-interface/gigi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/gcc-interface/gigi.h b/gcc/ada/gcc-interface/gigi.h
index 848cabf..a55b1b0 100644
--- a/gcc/ada/gcc-interface/gigi.h
+++ b/gcc/ada/gcc-interface/gigi.h
@@ -342,7 +342,7 @@ extern bool fp_arith_may_widen;
/* Data structures used to represent attributes. */
-enum attr_type
+enum attrib_type
{
ATTR_MACHINE_ATTRIBUTE,
ATTR_LINK_ALIAS,
@@ -356,7 +356,7 @@ enum attr_type
struct attrib
{
struct attrib *next;
- enum attr_type type;
+ enum attrib_type type;
tree name;
tree args;
Node_Id error_point;