aboutsummaryrefslogtreecommitdiff
path: root/gcc/vec.h
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2010-01-09 14:34:43 +0000
committerAlexandre Oliva <aoliva@redhat.com>2010-01-09 14:34:43 +0000
commit356c2b3f06c5a88cbb2425e6fe12d3f7077d4284 (patch)
tree5c5d8908659b409daaaca99e42c165fc5a66ea9d /gcc/vec.h
parentf21cc98704f5a3277295edd01c152ede3ed61cc6 (diff)
* vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
(DEF_VEC_ALLOC_FUNC_I_STACK): Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@155760 138bc75d-0d04-0410-961f-82ee72b054a4
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 e8bdde8851c..808503469cd 100644
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -1262,7 +1262,7 @@ struct vec_swallow_trailing_semi
static inline VEC(T,stack) *VEC_OP (T,stack,alloc1) \
(int alloc_, VEC(T,stack)* space) \
{ \
- return ((VEC(T,stack) *) vec_stack_p_reserve_exact_1 (alloc_, space); \
+ return (VEC(T,stack) *) vec_stack_p_reserve_exact_1 (alloc_, space); \
}
#define DEF_VEC_ALLOC_I_STACK(T) \
@@ -1275,7 +1275,7 @@ struct vec_swallow_trailing_semi
static inline VEC(T,stack) *VEC_OP (T,stack,alloc1) \
(int alloc_, VEC(T,stack)* space) \
{ \
- return ((VEC(T,stack) *) vec_stack_p_reserve_exact_1 (alloc_, space); \
+ return (VEC(T,stack) *) vec_stack_p_reserve_exact_1 (alloc_, space); \
}
#endif /* GCC_VEC_H */