]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
authorAlexandre Oliva <aoliva@redhat.com>
Sat, 9 Jan 2010 14:34:43 +0000 (14:34 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Sat, 9 Jan 2010 14:34:43 +0000 (14:34 +0000)
* vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
(DEF_VEC_ALLOC_FUNC_I_STACK): Likewise.

From-SVN: r155760

gcc/ChangeLog
gcc/vec.h

index 7d6fd14eb84285200fb263d73b8fc00850fcf2e9..b431193ea7220b72af2ac4dc5729666b57c28391 100644 (file)
@@ -1,3 +1,8 @@
+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
index e8bdde8851c76b051c2f3ba4e289f5a78929de8c..808503469cdd30f9d52f4b15a74d21702e305c5c 100644 (file)
--- 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 */