OSDN Git Service

2009-05-03 Paolo Bonzini <bonzini@gnu.org>
authorbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 May 2009 14:03:24 +0000 (14:03 +0000)
committerbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 May 2009 14:03:24 +0000 (14:03 +0000)
* 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

gcc/ChangeLog
gcc/tree.h

index 07a84d6..4fd93e5 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 1e58d52..5b8eb21 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)