From: Misha Brukman
Date: Fri, 22 Apr 2005 18:02:52 +0000 (+0000)
Subject: Hyphenate the adjective `n-bit' when used to describe values and processors
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cfa87bcf7162b4594d3288eb9ae6660b496e6367;p=oota-llvm.git
Hyphenate the adjective `n-bit' when used to describe values and processors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21456 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index b7bbac34c9e..3cf3b0eb0d7 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -513,11 +513,11 @@ system. The current set of primitive types is as follows:
Type | Description |
void | No value |
- ubyte | Unsigned 8 bit value |
- ushort | Unsigned 16 bit value |
- uint | Unsigned 32 bit value |
- ulong | Unsigned 64 bit value |
- float | 32 bit floating point value |
+ ubyte | Unsigned 8-bit value |
+ ushort | Unsigned 16-bit value |
+ uint | Unsigned 32-bit value |
+ ulong | Unsigned 64-bit value |
+ float | 32-bit floating point value |
label | Branch destination |
@@ -527,11 +527,11 @@ system. The current set of primitive types is as follows:
Type | Description |
bool | True or False value |
- sbyte | Signed 8 bit value |
- short | Signed 16 bit value |
- int | Signed 32 bit value |
- long | Signed 64 bit value |
- double | 64 bit floating point value |
+ sbyte | Signed 8-bit value |
+ short | Signed 16-bit value |
+ int | Signed 32-bit value |
+ long | Signed 64-bit value |
+ double | 64-bit floating point value |
@@ -2637,7 +2637,7 @@ The 'llvm.readport' intrinsic reads data from the hardware I/O port
specified by address and returns the value. The address and return
value must be integers, but the size is dependent upon the platform upon which
the program is code generated. For example, on x86, the address must be an
-unsigned 16 bit value, and the return value must be 8, 16, or 32 bits.
+unsigned 16-bit value, and the return value must be 8, 16, or 32 bits.
@@ -2681,7 +2681,7 @@ being a memory location for memory mapped I/O).
The 'llvm.writeport' intrinsic writes value to the I/O port
specified by address. The address and value must be integers, but the
size is dependent upon the platform upon which the program is code generated.
-For example, on x86, the address must be an unsigned 16 bit value, and the
+For example, on x86, the address must be an unsigned 16-bit value, and the
value written must be 8, 16, or 32 bits in length.
@@ -2721,7 +2721,7 @@ The 'llvm.readio' intrinsic reads data from a memory mapped I/O
location specified by pointer and returns the value. The argument must
be a pointer, and the return value must be a
first class type. However, certain architectures
-may not support I/O on all first class types. For example, 32 bit processors
+may not support I/O on all first class types. For example, 32-bit processors
may only support I/O on data types that are 32 bits or less.
@@ -2768,7 +2768,7 @@ data should be written.
The 'llvm.writeio' intrinsic writes value to the memory mapped
I/O address specified by pointer. The value must be a
first class type. However, certain architectures
-may not support I/O on all first class types. For example, 32 bit processors
+may not support I/O on all first class types. For example, 32-bit processors
may only support I/O on data types that are 32 bits or less.