From: Chris Lattner Date: Wed, 19 Dec 2007 05:04:11 +0000 (+0000) Subject: fix more table abuses. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=23ff1f910f5662be275b2c6bf40055d88579675a;p=oota-llvm.git fix more table abuses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45187 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 56ee12654d5..86f1ee3b51b 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1108,31 +1108,31 @@ be any type with a size.

Examples:
- - + + + + + + + + + +
- [40 x i32 ]
- [41 x i32 ]
- [40 x i8]
-
- Array of 40 32-bit integer values.
- Array of 41 32-bit integer values.
- Array of 40 8-bit integer values.
-
[40 x i32]Array of 40 32-bit integer values.
[41 x i32]Array of 41 32-bit integer values.
[4 x i8]Array of 4 8-bit integer values.

Here are some examples of multidimensional arrays:

- - + + + + + + + + + +
- [3 x [4 x i32]]
- [12 x [10 x float]]
- [2 x [3 x [4 x i16]]]
-
- 3x4 array of 32-bit integer values.
- 12x10 array of single precision floating point values.
- 2x3x4 array of 16-bit integer values.
-
[3 x [4 x i32]]3x4 array of 32-bit integer values.
[12 x [10 x float]]12x10 array of single precision floating point values.
[2 x [3 x [4 x i16]]]2x3x4 array of 16-bit integer values.
@@ -1239,7 +1239,7 @@ instruction.

< { i32, i32, i32 } > A triple of three i32 values - < { float, i32 (i32) * } > + < { float, i32 (i32)* } > A pair, where the first element is a float and the second element is a pointer to a function that takes an i32, returning @@ -1262,20 +1262,20 @@ zero.

Examples:
- - + + + + + + i32. + + + +
- [4x i32]*
- i32 (i32 *) *
- i32 addrspace(5)*
-
- A pointer to array of - four i32 values
- A pointer to a [4x i32]*
A pointer to array of four i32 values.
i32 (i32 *) * A pointer to a function that takes an i32*, returning an - i32.
- A pointer to an i32 value that resides - in address space 5.
-
i32 addrspace(5)*A pointer to an i32 value + that resides in address space #5.
@@ -1307,16 +1307,16 @@ be any integer or floating point type.

- - + + + + + + + + + +
- <4 x i32>
- <8 x float>
- <2 x i64>
-
- Vector of 4 32-bit integer values.
- Vector of 8 floating-point values.
- Vector of 2 64-bit integer values.
-
<4 x i32>Vector of 4 32-bit integer values.
<8 x float>Vector of 8 32-bit floating-point values.
<2 x i64>Vector of 2 64-bit integer values.
@@ -1342,12 +1342,8 @@ structure type).

- - + +
- opaque - - An opaque type.
-
opaqueAn opaque type.