Commit 2ddd5020 by Paolo Bonzini Committed by Paolo Bonzini

tree.h (TYPE_VECTOR_OPAQUE): Fix documentation.

2009-05-03  Paolo Bonzini  <bonzini@gnu.org>

	* tree.h (TYPE_VECTOR_OPAQUE): Fix documentation.
	Patch by Richard Guenther.

From-SVN: r147074
parent 9e322bc1
2009-05-03 Paolo Bonzini <bonzini@gnu.org>
* tree.h (TYPE_VECTOR_OPAQUE): Fix documentation.
Patch by Richard Guenther.
2009-05-03 Anatoly Sokolov <aesok@post.ru> 2009-05-03 Anatoly Sokolov <aesok@post.ru>
* defaults.h (FRAME_POINTER_REQUIRED): Provide default. * defaults.h (FRAME_POINTER_REQUIRED): Provide default.
......
...@@ -2197,8 +2197,8 @@ extern enum machine_mode vector_type_mode (const_tree); ...@@ -2197,8 +2197,8 @@ extern enum machine_mode vector_type_mode (const_tree);
#define SET_TYPE_VECTOR_SUBPARTS(VECTOR_TYPE, X) \ #define SET_TYPE_VECTOR_SUBPARTS(VECTOR_TYPE, X) \
(VECTOR_TYPE_CHECK (VECTOR_TYPE)->type.precision = exact_log2 (X)) (VECTOR_TYPE_CHECK (VECTOR_TYPE)->type.precision = exact_log2 (X))
/* Nonzero in an IDENTIFIER_NODE if the name is a local alias, whose /* Nonzero in a VECTOR_TYPE if the frontends should not emit warnings
uses are to be substituted for uses of the TREE_CHAINed identifier. */ about missing conversions to other vector types of the same size. */
#define TYPE_VECTOR_OPAQUE(NODE) \ #define TYPE_VECTOR_OPAQUE(NODE) \
(VECTOR_TYPE_CHECK (NODE)->base.deprecated_flag) (VECTOR_TYPE_CHECK (NODE)->base.deprecated_flag)
......
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