r306261 - Fix a typo

Sylvestre Ledru via cfe-commits cfe-commits at lists.llvm.org
Sun Jun 25 19:45:09 PDT 2017


Author: sylvestre
Date: Sun Jun 25 19:45:08 2017
New Revision: 306261

URL: http://llvm.org/viewvc/llvm-project?rev=306261&view=rev
Log:
Fix a typo

Modified:
    cfe/trunk/docs/MemorySanitizer.rst

Modified: cfe/trunk/docs/MemorySanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/MemorySanitizer.rst?rev=306261&r1=306260&r2=306261&view=diff
==============================================================================
--- cfe/trunk/docs/MemorySanitizer.rst (original)
+++ cfe/trunk/docs/MemorySanitizer.rst Sun Jun 25 19:45:08 2017
@@ -27,7 +27,7 @@ executable, so make sure to use ``clang`
 link step. When linking shared libraries, the MemorySanitizer run-time
 is not linked, so ``-Wl,-z,defs`` may cause link errors (don't use it
 with MemorySanitizer). To get a reasonable performance add ``-O1`` or
-higher. To get meaninful stack traces in error messages add
+higher. To get meaningful stack traces in error messages add
 ``-fno-omit-frame-pointer``. To get perfect stack traces you may need
 to disable inlining (just use ``-O1``) and tail call elimination
 (``-fno-optimize-sibling-calls``).




More information about the cfe-commits mailing list