[llvm] r233920 - Fix typo and reword in LangRef
Eli Bendersky
eliben at google.com
Thu Apr 2 08:20:04 PDT 2015
Author: eliben
Date: Thu Apr 2 10:20:04 2015
New Revision: 233920
URL: http://llvm.org/viewvc/llvm-project?rev=233920&view=rev
Log:
Fix typo and reword in LangRef
Patch by Douglas Katzman
Differential Revision: http://reviews.llvm.org/D8785
Modified:
llvm/trunk/docs/LangRef.rst
Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=233920&r1=233919&r2=233920&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Thu Apr 2 10:20:04 2015
@@ -348,13 +348,13 @@ added in the future:
"``anyregcc``" - Dynamic calling convention for code patching
This is a special convention that supports patching an arbitrary code
sequence in place of a call site. This convention forces the call
- arguments into registers but allows them to be dynamcially
+ arguments into registers but allows them to be dynamically
allocated. This can currently only be used with calls to
llvm.experimental.patchpoint because only this intrinsic records
the location of its arguments in a side table. See :doc:`StackMaps`.
"``preserve_mostcc``" - The `PreserveMost` calling convention
- This calling convention attempts to make the code in the caller as little
- intrusive as possible. This calling convention behaves identical to the `C`
+ This calling convention attempts to make the code in the caller as
+ unintrusive as possible. This convention behaves identically to the `C`
calling convention on how arguments and return values are passed, but it
uses a different set of caller/callee-saved registers. This alleviates the
burden of saving and recovering a large register set before and after the
More information about the llvm-commits
mailing list