summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-09 14:34:43 +0000
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-09 14:34:43 +0000
commitd3ab9b67ea650c4b3711fb8e6c2ebe16c8d12ebf (patch)
tree5c5d8908659b409daaaca99e42c165fc5a66ea9d
parent753631e21411e2bd13f0c6a01ed43bed0f406078 (diff)
downloadppe42-gcc-d3ab9b67ea650c4b3711fb8e6c2ebe16c8d12ebf.tar.gz
ppe42-gcc-d3ab9b67ea650c4b3711fb8e6c2ebe16c8d12ebf.zip
* 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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/vec.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7d6fd14eb84..b431193ea72 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.
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 */
OpenPOWER on IntegriCloud