diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-09 14:34:43 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-09 14:34:43 +0000 |
commit | d3ab9b67ea650c4b3711fb8e6c2ebe16c8d12ebf (patch) | |
tree | 5c5d8908659b409daaaca99e42c165fc5a66ea9d /gcc/vec.h | |
parent | 753631e21411e2bd13f0c6a01ed43bed0f406078 (diff) | |
download | gcc-d3ab9b67ea650c4b3711fb8e6c2ebe16c8d12ebf.tar.gz |
* vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
(DEF_VEC_ALLOC_FUNC_I_STACK): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155760 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vec.h')
-rw-r--r-- | gcc/vec.h | 4 |
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 */ |