OSDN Git Service

* vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 9 Jan 2010 14:34:43 +0000 (14:34 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 9 Jan 2010 14:34:43 +0000 (14:34 +0000)
(DEF_VEC_ALLOC_FUNC_I_STACK): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155760 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/vec.h

index 7d6fd14..b431193 100644 (file)
@@ -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.
 
index e8bdde8..8085034 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 */