Fixing a typo in docs/CodeGenerator.rst

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253045 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Artyom Skrobov 2015-11-13 15:14:04 +00:00
parent 055b23b90e
commit b2446842b9

View File

@ -640,7 +640,7 @@ For target specific directives, the MCStreamer has a MCTargetStreamer instance.
Each target that needs it defines a class that inherits from it and is a lot Each target that needs it defines a class that inherits from it and is a lot
like MCStreamer itself: It has one method per directive and two classes that like MCStreamer itself: It has one method per directive and two classes that
inherit from it, a target object streamer and a target asm streamer. The target inherit from it, a target object streamer and a target asm streamer. The target
asm streamer just prints it (``emitFnStart -> .fnstrart``), and the object asm streamer just prints it (``emitFnStart -> .fnstart``), and the object
streamer implement the assembler logic for it. streamer implement the assembler logic for it.
To make llvm use these classes, the target initialization must call To make llvm use these classes, the target initialization must call