[llvm] r294645 - [docs] Fix typo

Jonathan Roelofs via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 9 15:02:37 PST 2017


Author: jroelofs
Date: Thu Feb  9 17:02:37 2017
New Revision: 294645

URL: http://llvm.org/viewvc/llvm-project?rev=294645&view=rev
Log:
[docs] Fix typo

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=294645&r1=294644&r2=294645&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Thu Feb  9 17:02:37 2017
@@ -1005,7 +1005,7 @@ The TableGen DAG instruction selector ge
 in the ``.td`` file and automatically builds parts of the pattern matching code
 for your target.  It has the following strengths:
 
-* At compiler-compiler time, it analyzes your instruction patterns and tells you
+* At compiler-compile time, it analyzes your instruction patterns and tells you
   if your patterns make sense or not.
 
 * It can handle arbitrary constraints on operands for the pattern match.  In
@@ -1026,7 +1026,7 @@ for your target.  It has the following s
 
 * Targets can define their own (and rely on built-in) "pattern fragments".
   Pattern fragments are chunks of reusable patterns that get inlined into your
-  patterns during compiler-compiler time.  For example, the integer "``(not
+  patterns during compiler-compile time.  For example, the integer "``(not
   x)``" operation is actually defined as a pattern fragment that expands as
   "``(xor x, -1)``", since the SelectionDAG does not have a native '``not``'
   operation.  Targets can define their own short-hand fragments as they see fit.




More information about the llvm-commits mailing list