diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2016-06-04 03:08:01 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2016-06-04 03:08:01 +0000 |
commit | 0c30f89ccad259978f89950ba9fe4151f952ace6 (patch) | |
tree | b801b02a537c967d2ce42aa2aea57d36b1c55b0d /llvm/docs/CommandGuide/llvm-profdata.rst | |
parent | c012d086fac795d42d827c35d34653e615cecda0 (diff) | |
download | bcm5719-llvm-0c30f89ccad259978f89950ba9fe4151f952ace6.tar.gz bcm5719-llvm-0c30f89ccad259978f89950ba9fe4151f952ace6.zip |
[llvm-profdata] Revert r271709 and the 3 subsequent commits - the code
and/or tests aren't working on Windows currently.
There seems to be some problem with quoting the file paths. I don't
understand the test structure here or the code well enough to try to
come up with a way to correctly handle paths with back slashes in them,
and this has caused the Windows builds to be failing for 7 hours now, so
I'm reverting the whole thing to bring them back to life. Sorry for the
disruption, but a couple of these were bug fixes anyways that can be
folded into a fresh commit.
Reverts the following patches:
r271756: Clean up the way we create the input filenames buffer (NFC)
r271748: Fix use-after-free from discarded MemoryBuffer (NFC)
r271710: Fix option description (NFC)
r271709: Add option to ingest filepaths from a file
llvm-svn: 271760
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-profdata.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-profdata.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/docs/CommandGuide/llvm-profdata.rst b/llvm/docs/CommandGuide/llvm-profdata.rst index 2742fd3d75d..12f2771bd00 100644 --- a/llvm/docs/CommandGuide/llvm-profdata.rst +++ b/llvm/docs/CommandGuide/llvm-profdata.rst @@ -44,9 +44,6 @@ interpreted as relatively more important than a shorter run. Depending on the nature of the training runs it may be useful to adjust the weight given to each input file by using the ``-weighted-input`` option. -Profiles passed in via ``-weighted-input``, ``-input-files``, or via positional -arguments are processed once for each time they are seen. - OPTIONS ^^^^^^^ @@ -68,12 +65,6 @@ OPTIONS Input files specified without using this option are assigned a default weight of 1. Examples are shown below. -.. option:: -input-files=path, -f=path - - Specify a file which contains a list of files to merge. The entries in this - file are newline-separated. Lines starting with '#' are skipped. Entries may - be of the form <filename> or <weight>,<filename>. - .. option:: -instr (default) Specify that the input profile is an instrumentation-based profile. |