diff options
author | Joel Galenson <jgalenson@google.com> | 2018-05-07 16:23:46 +0000 |
---|---|---|
committer | Joel Galenson <jgalenson@google.com> | 2018-05-07 16:23:46 +0000 |
commit | 267ea72437a377d2b3d93fdae2d520f146565715 (patch) | |
tree | a02a2d3e6d0978df1a83802328d3c823fdbb15f4 /clang/docs/UsersManual.rst | |
parent | ac5d0a31ef20c6b0db2e58429520433144ba6d06 (diff) | |
download | bcm5719-llvm-267ea72437a377d2b3d93fdae2d520f146565715.tar.gz bcm5719-llvm-267ea72437a377d2b3d93fdae2d520f146565715.zip |
[docs] Fix typos in the Clang User's Manual.
llvm-svn: 331644
Diffstat (limited to 'clang/docs/UsersManual.rst')
-rw-r--r-- | clang/docs/UsersManual.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index 729adfdd397..9778b1654de 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -1735,11 +1735,11 @@ profile creation and use. .. option:: -fprofile-generate[=<dirname>] The ``-fprofile-generate`` and ``-fprofile-generate=`` flags will use - an alterantive instrumentation method for profile generation. When + an alternative instrumentation method for profile generation. When given a directory name, it generates the profile file ``default_%m.profraw`` in the directory named ``dirname`` if specified. If ``dirname`` does not exist, it will be created at runtime. ``%m`` specifier - will be substibuted with a unique id documented in step 2 above. In other words, + will be substituted with a unique id documented in step 2 above. In other words, with ``-fprofile-generate[=<dirname>]`` option, the "raw" profile data automatic merging is turned on by default, so there will no longer any risk of profile clobbering from different running processes. For example, |