From 0fd4a27ec0b4c890c3c0deb36ef0896a4400ea4d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Feb 2009 19:53:29 +0000 Subject: [PATCH] document pointer type constraints, PR3513 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64088 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/LangRef.html b/docs/LangRef.html index e58d159cbf0..dc6d7f2dae1 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1561,6 +1561,10 @@ reference to another object, which must live in memory. Pointer types may have an optional address space attribute defining the target-specific numbered address space where the pointed-to object resides. The default address space is zero.

+ +

Note that LLVM does not permit pointers to void (void*) nor does +it permit pointers to labels (label*). Use i8* intead.

+
Syntax:
  <type> *
Examples:
-- 2.11.0