diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2010-01-09 14:34:43 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2010-01-09 14:34:43 +0000 |
commit | 0e00563c88bd7e6c0ac4e9c0923fe46fba9f72b6 (patch) | |
tree | 5c5d8908659b409daaaca99e42c165fc5a66ea9d /gcc | |
parent | 0ce659eb451f005a5f5a5966592413a5fbc23c54 (diff) | |
download | gcc-0e00563c88bd7e6c0ac4e9c0923fe46fba9f72b6.zip gcc-0e00563c88bd7e6c0ac4e9c0923fe46fba9f72b6.tar.gz gcc-0e00563c88bd7e6c0ac4e9c0923fe46fba9f72b6.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/vec.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d6fd14..b431193 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-01-09 Alexandre Oliva <aoliva@redhat.com> + * vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren. + (DEF_VEC_ALLOC_FUNC_I_STACK): Likewise. + +2010-01-09 Alexandre Oliva <aoliva@redhat.com> + * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence bogus uninitialized warning. @@ -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 */ |