aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-05-03 14:03:24 +0000
committerPaolo Bonzini <bonzini@gcc.gnu.org>2009-05-03 14:03:24 +0000
commit2ddd5020a18df527dd769c8513697d59671ad154 (patch)
tree259a09a2843639b95f1d8abcd9142c0060adf4c3 /gcc/tree.h
parent9e322bc1a5bea706d6f48c15ccba1fc9a8841012 (diff)
downloadgcc-2ddd5020a18df527dd769c8513697d59671ad154.zip
gcc-2ddd5020a18df527dd769c8513697d59671ad154.tar.gz
gcc-2ddd5020a18df527dd769c8513697d59671ad154.tar.bz2
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
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 1e58d52..5b8eb21 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)