From: Chris Lattner
Date: Tue, 25 Dec 2007 20:34:52 +0000 (+0000)
Subject: update to llvm 2.0 syntax.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=64910eeec481c90640a374e27011644217ebb130;p=oota-llvm.git
update to llvm 2.0 syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45355 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index bec79f3711d..c877651225c 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1418,8 +1418,8 @@ and smaller aggregate constants.
Structure constants are represented with notation similar to structure
type definitions (a comma separated list of elements, surrounded by braces
- ({})). For example: "{ i32 4, float 17.0, i32* %G }",
- where "%G" is declared as "@G = external global i32". Structure constants
+ ({})). For example: "{ i32 4, float 17.0, i32* @G }",
+ where "@G" is declared as "@G = external global i32". Structure constants
must have structure type, and the number and
types of elements must match those specified by the type.