diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-03 14:03:24 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-03 14:03:24 +0000 |
commit | 8b50765fc01baf57c08f34bd6dcc8144c859be7a (patch) | |
tree | 259a09a2843639b95f1d8abcd9142c0060adf4c3 /gcc/tree.h | |
parent | 49a657d98f5b56b3b469163be89e220657cac92a (diff) | |
download | gcc-8b50765fc01baf57c08f34bd6dcc8144c859be7a.tar.gz |
2009-05-03 Paolo Bonzini <bonzini@gnu.org>
* tree.h (TYPE_VECTOR_OPAQUE): Fix documentation.
Patch by Richard Guenther.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 1e58d52d8bc..5b8eb21f2e4 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2197,8 +2197,8 @@ extern enum machine_mode vector_type_mode (const_tree); #define SET_TYPE_VECTOR_SUBPARTS(VECTOR_TYPE, X) \ (VECTOR_TYPE_CHECK (VECTOR_TYPE)->type.precision = exact_log2 (X)) -/* Nonzero in an IDENTIFIER_NODE if the name is a local alias, whose - uses are to be substituted for uses of the TREE_CHAINed identifier. */ +/* Nonzero in a VECTOR_TYPE if the frontends should not emit warnings + about missing conversions to other vector types of the same size. */ #define TYPE_VECTOR_OPAQUE(NODE) \ (VECTOR_TYPE_CHECK (NODE)->base.deprecated_flag) |