From 7d2e7bef90785b174a350f3bc4b240256be9831c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 10 Oct 2010 18:20:35 +0000 Subject: [PATCH] clarify that zero sized vectors are illegal, PR8340 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116167 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 704f52bdbcf..e5db8c69cfa 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1910,8 +1910,9 @@ Classifications < <# elements> x <elementtype> > -

The number of elements is a constant integer value; elementtype may be any - integer or floating point type.

+

The number of elements is a constant integer value larger than 0; elementtype + may be any integer or floating point type. Vectors of size zero are not + allowed, and pointers are not allowed as the element type.

Examples:
-- 2.34.1