diff --git a/llvm/docs/WritingAnLLVMBackend.html b/llvm/docs/WritingAnLLVMBackend.html index abf91feb8a87..c215fc62a3f3 100644 --- a/llvm/docs/WritingAnLLVMBackend.html +++ b/llvm/docs/WritingAnLLVMBackend.html @@ -110,13 +110,15 @@ step can be almost automated.

You also need to write an instruction selector for your platform. The -recommended method is the pattern-matching instruction selector. You can see -examples in other targets: lib/Target/*/*ISelPattern.cpp. The former -method for writing instruction selectors (not recommended) is -encapsulated in lib/Target/*/*ISelSimple.cpp, which are -InstVisitor-based translators, generating code for an LLVM instruction -at a time. Creating an instruction selector is perhaps the most time-consuming -part of creating a back-end.

+recommended method is the pattern-matching instruction selector, +examples of which you can see in other targets: +lib/Target/*/*ISelPattern.cpp. The former method for writing +instruction selectors (not recommended for new targets) is evident in +lib/Target/*/*ISelSimple.cpp, which are InstVisitor-based +translators, generating code for an LLVM instruction at a time. Creating an +instruction selector is perhaps the most time-consuming part of creating a +back-end.

To create a JIT for your platform: