Commit a2d36602 by Richard Henderson Committed by Richard Henderson

c-common.c (handle_mode_attribute): Allow scalar->vector type changes yet.

        * c-common.c (handle_mode_attribute): Allow scalar->vector
        type changes yet.

From-SVN: r89248
parent 135a488f
2004-10-18 Richard Henderson <rth@redhat.com>
* c-common.c (handle_mode_attribute): Allow scalar->vector
type changes yet.
2004-10-18 Kazu Hirata <kazu@cs.umass.edu>
* expr.c (expand_expr_real_1) [MODIFY_EXPR]: Don't request a
......
......@@ -4386,7 +4386,9 @@ handle_mode_attribute (tree *node, tree name, tree args,
TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
typefm = type;
}
else if (TREE_CODE (type) != TREE_CODE (typefm))
else if (VECTOR_MODE_P (mode)
? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
: TREE_CODE (type) != TREE_CODE (typefm))
{
error ("mode %qs applied to inappropriate type", p);
return NULL_TREE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment