diff options
author | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2015-11-13 15:14:04 +0000 |
---|---|---|
committer | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2015-11-13 15:14:04 +0000 |
commit | 48aee7c65ba86dfa52c19888ee6f33ec08a2db7c (patch) | |
tree | 07fed9b2791ec288f9760e79f99ca775ec28fea0 /llvm/docs | |
parent | f8ce28676a7c19de7d51514a4bed0567aabaf7a9 (diff) | |
download | bcm5719-llvm-48aee7c65ba86dfa52c19888ee6f33ec08a2db7c.tar.gz bcm5719-llvm-48aee7c65ba86dfa52c19888ee6f33ec08a2db7c.zip |
Fixing a typo in docs/CodeGenerator.rst
llvm-svn: 253045
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CodeGenerator.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CodeGenerator.rst b/llvm/docs/CodeGenerator.rst index 03f5cbd726d..f3b949c7ad1 100644 --- a/llvm/docs/CodeGenerator.rst +++ b/llvm/docs/CodeGenerator.rst @@ -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 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 -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. To make llvm use these classes, the target initialization must call |