From 2ddd5020a18df527dd769c8513697d59671ad154 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Sun, 3 May 2009 14:03:24 +0000 Subject: [PATCH] tree.h (TYPE_VECTOR_OPAQUE): Fix documentation. 2009-05-03 Paolo Bonzini * tree.h (TYPE_VECTOR_OPAQUE): Fix documentation. Patch by Richard Guenther. From-SVN: r147074 --- gcc/ChangeLog | 5 +++++ gcc/tree.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07a84d6e745..4fd93e5d5c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-05-03 Paolo Bonzini + + * tree.h (TYPE_VECTOR_OPAQUE): Fix documentation. + Patch by Richard Guenther. + 2009-05-03 Anatoly Sokolov * defaults.h (FRAME_POINTER_REQUIRED): Provide default. 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) -- 2.30.2