aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2008-01-22 18:03:12 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2008-01-22 18:03:12 +0100
commit270e749db4e806317425bf51a774c87eae069057 (patch)
treebdf1a2c50a6ec8b32870c8f61c89d45760a612c7 /gcc/c-common.c
parent2ddd2871085a3bf35e2429390272301d8c6ab851 (diff)
downloadgcc-270e749db4e806317425bf51a774c87eae069057.zip
gcc-270e749db4e806317425bf51a774c87eae069057.tar.gz
gcc-270e749db4e806317425bf51a774c87eae069057.tar.bz2
re PR c++/34914 (Member pointer to vector rejected)
PR c++/34914 * c-common.c (handle_vector_size_attribute): Only allow integral, scalar float and fixed point types. Handle OFFSET_TYPE the same way as pointer, array etc. types. * tree.c (reconstruct_complex_type): Handle OFFSET_TYPE. * g++.dg/ext/vector10.C: New test. From-SVN: r131729
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 4e5d24c..1ba5c78 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -6031,15 +6031,16 @@ handle_vector_size_attribute (tree *node, tree name, tree args,
while (POINTER_TYPE_P (type)
|| TREE_CODE (type) == FUNCTION_TYPE
|| TREE_CODE (type) == METHOD_TYPE
- || TREE_CODE (type) == ARRAY_TYPE)
+ || TREE_CODE (type) == ARRAY_TYPE
+ || TREE_CODE (type) == OFFSET_TYPE)
type = TREE_TYPE (type);
/* Get the mode of the type being modified. */
orig_mode = TYPE_MODE (type);
- if (TREE_CODE (type) == RECORD_TYPE
- || TREE_CODE (type) == UNION_TYPE
- || TREE_CODE (type) == VECTOR_TYPE
+ if ((!INTEGRAL_TYPE_P (type)
+ && !SCALAR_FLOAT_TYPE_P (type)
+ && !FIXED_POINT_TYPE_P (type))
|| (!SCALAR_FLOAT_MODE_P (orig_mode)
&& GET_MODE_CLASS (orig_mode) != MODE_INT
&& !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode))