diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2017-02-09 23:02:37 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2017-02-09 23:02:37 +0000 |
commit | ebba0507da11c8a1910c06617bb83ef5ae9f0034 (patch) | |
tree | b7526514525346b58c244403a0be2fa067102066 /llvm/docs | |
parent | 0b37f209bf2aaf9b06276a0c40d1c29b5d6bfe89 (diff) | |
download | bcm5719-llvm-ebba0507da11c8a1910c06617bb83ef5ae9f0034.tar.gz bcm5719-llvm-ebba0507da11c8a1910c06617bb83ef5ae9f0034.zip |
[docs] Fix typo
llvm-svn: 294645
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CodeGenerator.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CodeGenerator.rst b/llvm/docs/CodeGenerator.rst index 6e5a54a592c..106fc8456f6 100644 --- a/llvm/docs/CodeGenerator.rst +++ b/llvm/docs/CodeGenerator.rst @@ -1005,7 +1005,7 @@ The TableGen DAG instruction selector generator reads the instruction patterns 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 strengths: * 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. |