From: Chris Lattner
Date: Tue, 18 Dec 2007 06:18:21 +0000 (+0000)
Subject: avoid confusing terminology (what is a "word"?), fix scary markup, add section to...
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b9488a68906811f3fc93383fe7866c9640051615;p=oota-llvm.git
avoid confusing terminology (what is a "word"?), fix scary markup, add section to TOC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45150 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index f9e0824260a..56ee12654d5 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -40,6 +40,7 @@
Derived Types
+ - Integer Type
- Array Type
- Function Type
- Pointer Type
@@ -1069,28 +1070,18 @@ value.
Examples:
-
-
- i1
- i4
- i8
- i16
- i32
- i42
- i64
- i1942652
- |
-
- A boolean integer of 1 bit
- A nibble sized integer of 4 bits.
- A byte sized integer of 8 bits.
- A half word sized integer of 16 bits.
- A word sized integer of 32 bits.
- An integer whose bit width is the answer.
- A double word sized integer of 64 bits.
- A really big integer of over 1 million bits.
- |
+
+
+ i1 |
+ a single-bit integer. |
+
+ i32 |
+ a 32-bit integer. |
+
+ i1942652 |
+ a really big integer of over 1 million bits. |
+