tree.h (TYPE_VECTOR_OPAQUE): Fix documentation.
authorPaolo Bonzini <bonzini@gnu.org>
Sun, 3 May 2009 14:03:24 +0000 (14:03 +0000)
committerPaolo Bonzini <bonzini@gcc.gnu.org>
Sun, 3 May 2009 14:03:24 +0000 (14:03 +0000)
2009-05-03  Paolo Bonzini  <bonzini@gnu.org>

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

From-SVN: r147074

gcc/ChangeLog
gcc/tree.h

index 07a84d6e745eccc5c1b5a008db72afd52276fa19..4fd93e5d5c69a407ce72808e220622f174a50e39 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        * defaults.h (FRAME_POINTER_REQUIRED): Provide default.
index 1e58d52d8bcfd70271191bb7bf759b3bb54b97c0..5b8eb21f2e4cd7719a9380e816e03664e6636ab3 100644 (file)
@@ -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)