1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[llvm-cov] Add some documentation for the -tab-size option

Also, un-hide the cl::opt.

llvm-svn: 277741
This commit is contained in:
Vedant Kumar 2016-08-04 18:00:42 +00:00
parent 5c74e232b1
commit b3c987ea6f
2 changed files with 8 additions and 2 deletions

View File

@ -241,6 +241,11 @@ OPTIONS
Use the specified output format. The supported formats are: "text", "html".
.. option:: -tab-size=<TABSIZE>
Replace tabs with <TABSIZE> spaces when preparing reports. Currently, this is
only supported for the html format.
.. option:: -output-dir=PATH
Specify a directory to write coverage reports into. If the directory does not

View File

@ -585,8 +585,9 @@ int CodeCoverageTool::show(int argc, const char **argv,
cl::aliasopt(ShowOutputDirectory));
cl::opt<uint32_t> TabSize(
"tab-size", cl::Hidden, cl::init(2),
cl::desc("Set tab size for the HTML coverage report (default = 2)"));
"tab-size", cl::init(2),
cl::desc(
"Set tab expansion size for html coverage reports (default = 2)"));
auto Err = commandLineParser(argc, argv);
if (Err)