summaryrefslogtreecommitdiff
path: root/gcc/vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/vec.h')
-rw-r--r--gcc/vec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/vec.h b/gcc/vec.h
index adbd16aacbb..e242baaa1d1 100644
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -471,7 +471,7 @@ typedef struct VEC(T,B) \
} VEC(T,B)
#define VEC_T_GTY(T,B) \
-typedef struct VEC(T,B) GTY(()) \
+typedef struct GTY(()) VEC(T,B) \
{ \
unsigned num; \
unsigned alloc; \
@@ -480,7 +480,7 @@ typedef struct VEC(T,B) GTY(()) \
/* Derived vector type, user visible. */
#define VEC_TA_GTY(T,B,A,GTY) \
-typedef struct VEC(T,A) GTY \
+typedef struct GTY VEC(T,A) \
{ \
VEC(T,B) base; \
} VEC(T,A)