From 2dc379a7ae60a384b127968bef431d423001f97b Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Mon, 30 Jul 2007 03:52:55 +0000 Subject: [PATCH] Upgrade a comment... llvm-svn: 40585 --- clang/include/clang/AST/Type.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h index 6853dbcf13df..efd9cac22c6a 100644 --- a/clang/include/clang/AST/Type.h +++ b/clang/include/clang/AST/Type.h @@ -497,8 +497,9 @@ public: /// OCUVectorType - Extended vector type. This type is created using /// __attribute__((ocu_vector_type(n)), where "n" is the number of elements. -/// Unlike vector_size, ocu_vector_type is only allowed on typedef's. -/// This class will enable syntactic extensions, like C++ style initializers. +/// Unlike vector_size, ocu_vector_type is only allowed on typedef's. This +/// class enables syntactic extensions, like Vector Components for accessing +/// points, colors, and textures (modeled after OpenGL Shading Language). class OCUVectorType : public VectorType { OCUVectorType(QualType vecType, unsigned nElements, QualType canonType) : VectorType(OCUVector, vecType, nElements, canonType) {} -- GitLab