From: Alexandre Oliva Date: Sat, 9 Jan 2010 14:34:43 +0000 (+0000) Subject: vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren. X-Git-Tag: releases/gcc-4.5.0~1322 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e00563c88bd7e6c0ac4e9c0923fe46fba9f72b6;p=thirdparty%2Fgcc.git vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren. * vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren. (DEF_VEC_ALLOC_FUNC_I_STACK): Likewise. From-SVN: r155760 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d6fd14eb842..b431193ea722 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-01-09 Alexandre Oliva + + * vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren. + (DEF_VEC_ALLOC_FUNC_I_STACK): Likewise. + 2010-01-09 Alexandre Oliva * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence diff --git a/gcc/vec.h b/gcc/vec.h index e8bdde8851c7..808503469cdd 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 */