[llvm-commits] [llvm] r167137 - /llvm/trunk/docs/CodeGenerator.rst

Eli Bendersky eliben at google.com
Wed Oct 31 09:41:07 PDT 2012


Author: eliben
Date: Wed Oct 31 11:41:07 2012
New Revision: 167137

URL: http://llvm.org/viewvc/llvm-project?rev=167137&view=rev
Log:
Fix typo in CodeGenerator doc

Modified:
    llvm/trunk/docs/CodeGenerator.rst

Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=167137&r1=167136&r2=167137&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Wed Oct 31 11:41:07 2012
@@ -256,10 +256,10 @@
 The ``TargetRegisterInfo`` class is used to describe the register file of the
 target and any interactions between the registers.
 
-Registers in the code generator are represented in the code generator by
-unsigned integers.  Physical registers (those that actually exist in the target
-description) are unique small numbers, and virtual registers are generally
-large.  Note that register ``#0`` is reserved as a flag value.
+Registers are represented in the code generator by unsigned integers.  Physical
+registers (those that actually exist in the target description) are unique
+small numbers, and virtual registers are generally large.  Note that
+register ``#0`` is reserved as a flag value.
 
 Each register in the processor description has an associated
 ``TargetRegisterDesc`` entry, which provides a textual name for the register





More information about the llvm-commits mailing list