diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-17 22:22:24 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-17 22:22:24 +0000 |
commit | 600df458ffe36ff4ed6aeead4754b79d09c0a861 (patch) | |
tree | 8bb21c20de52e02ec98504ff2534ffd30724ff7f | |
parent | 1fb623e4edba8f5a417fa3de63671af09c10b9c9 (diff) | |
download | external_llvm-600df458ffe36ff4ed6aeead4754b79d09c0a861.zip external_llvm-600df458ffe36ff4ed6aeead4754b79d09c0a861.tar.gz external_llvm-600df458ffe36ff4ed6aeead4754b79d09c0a861.tar.bz2 |
Remove colloquialisms from the documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20233 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/CodeGenerator.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html index fa9c707..cfdcc2b 100644 --- a/docs/CodeGenerator.html +++ b/docs/CodeGenerator.html @@ -899,8 +899,7 @@ implementations.</p> <div class="doc_text"> -<p> -The x86 has a very, uhm, flexible, way of accessing memory. It is capable of +<p>The x86 has a very flexible way of accessing memory. It is capable of forming memory addresses of the following expression directly in integer instructions (which use ModR/M addressing):</p> @@ -908,9 +907,9 @@ instructions (which use ModR/M addressing):</p> Base+[1,2,4,8]*IndexReg+Disp32 </pre> -<p>Wow, that's crazy. In order to represent this, LLVM tracks no less than 4 -operands for each memory operand of this form. This means that the "load" form -of 'mov' has the following "Operands" in this order:</p> +<p>In order to represent this, LLVM tracks no less than 4 operands for each +memory operand of this form. This means that the "load" form of 'mov' has the +following <tt>MachineOperand</tt>s in this order:</p> <pre> Index: 0 | 1 2 3 4 |