Use ellipsis ... to indicate omitted commands

In an example like "clang -fxray-instrument .." the .. could be confused
with a literal .. (parent directory), which is used in commands like
"cmake -GNinja .."

llvm-svn: 327000
This commit is contained in:
Ed Maste 2018-03-08 13:52:04 +00:00
parent a2a940d9a7
commit 1ba49ee897
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ For example:
::
clang -fxray-instrument ..
clang -fxray-instrument ...
By default, functions that have at least 200 instructions will get XRay
instrumentation points. You can tweak that number through the
@ -67,7 +67,7 @@ instrumentation points. You can tweak that number through the
::
clang -fxray-instrument -fxray-instruction-threshold=1 ..
clang -fxray-instrument -fxray-instruction-threshold=1 ...
You can also specifically instrument functions in your binary to either always
or never be instrumented using source-level attributes. You can do it using the