diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2017-06-26 02:45:08 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2017-06-26 02:45:08 +0000 |
commit | 94a21041e791e684ac32ff1c037362ab25da3130 (patch) | |
tree | ff44935310e231ffa0bd2fb7896dd8d5d9462673 /clang | |
parent | 92e4443c32a9aaa8fd4edc71e642013535427fa3 (diff) | |
download | bcm5719-llvm-94a21041e791e684ac32ff1c037362ab25da3130.tar.gz bcm5719-llvm-94a21041e791e684ac32ff1c037362ab25da3130.zip |
Fix a typo
llvm-svn: 306261
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/MemorySanitizer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/MemorySanitizer.rst b/clang/docs/MemorySanitizer.rst index 8088ecdf561..5bb19ed8a50 100644 --- a/clang/docs/MemorySanitizer.rst +++ b/clang/docs/MemorySanitizer.rst @@ -27,7 +27,7 @@ executable, so make sure to use ``clang`` (not ``ld``) for the final 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``). |