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:

TypeDescription voidNo value - ubyteUnsigned 8 bit value - ushortUnsigned 16 bit value - uintUnsigned 32 bit value - ulongUnsigned 64 bit value - float32 bit floating point value + ubyteUnsigned 8-bit value + ushortUnsigned 16-bit value + uintUnsigned 32-bit value + ulongUnsigned 64-bit value + float32-bit floating point value labelBranch destination @@ -527,11 +527,11 @@ system. The current set of primitive types is as follows:

TypeDescription boolTrue or False value - sbyteSigned 8 bit value - shortSigned 16 bit value - intSigned 32 bit value - longSigned 64 bit value - double64 bit floating point value + sbyteSigned 8-bit value + shortSigned 16-bit value + intSigned 32-bit value + longSigned 64-bit value + double64-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.