summaryrefslogtreecommitdiff
path: root/llvm/docs/CommandGuide/bugpoint.rst
AgeCommit message (Collapse)Author
2019-07-04[docs] [tools] Fix see also linksAlex Brachet
Summary: Changes "see also" links to use :manpage: instead of plain text or the form `name|name` which was being treated literally, not as a link. Reviewers: jhenderson, rupprecht Reviewed By: jhenderson Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D63970 llvm-svn: 365159
2019-07-04[docs] [NFC] Removed excess spacingAlex Brachet
Summary: Removed excess new lines from documentations. As far as I can tell, it seems as though restructured text is agnostic to new lines, the use of new lines was inconsistent and had no effect on how the files were being displayed. Reviewers: jhenderson, rupprecht, JDevlieghere Reviewed By: jhenderson Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D63971 llvm-svn: 365105
2019-06-27[docs][tools] Add missing "program" tags to rst filesJames Henderson
Sphinx allows for definitions of command-line options using `.. option <name>` and references to those options via `:option:<name>`. However, it looks like there is no scoping of these options by default, meaning that links can end up pointing to incorrect documents. See for example the llvm-mca document, which contains references to -o that, prior to this patch, pointed to a different document. What's worse is that these links appear to be non-deterministic in which one is picked (on my machine, some references end up pointing to opt, whereas on the live docs, they point to llvm-dwarfdump, for example). The fix is to add the .. program <name> tag. This essentially namespaces the options (definitions and references) to the named program, ensuring that the links are kept correct. Reviwed by: andreadb Differential Revision: https://reviews.llvm.org/D63873 llvm-svn: 364538
2016-07-15bugpoint: add flag -verbose-errorsSebastian Pop
The default behavior of bugpoint is to print "<crash>" when it finds a reduced test that crashes compilation. With this flag we now can see the output of the crashing program. This is useful to make sure it is the same error being tracked down and not a different error that happens to crash the compiler as well. Differential Revision: https://reviews.llvm.org/D22411 llvm-svn: 275646
2016-03-23[docs] Use reST link.Sean Silva
llvm-svn: 264121
2016-03-23[docs] Clarify the sense of --compile-commandSean Silva
In retrospect, it seems "obvious" that the sense of the return code is the same as if it crashed on "interesting" inputs. But that didn't stop me from spending more time than I care to admit verifying this. llvm-svn: 264119
2014-06-04docs: Remove documentation for legacy PGO optionsJustin Bogner
Late last year r191835 removed a largely unmaintained legacy PGO infrastructure, but some of the docs were missed. Since these docs are for things that don't actually exist anymore, they should be removed. llvm-svn: 210165
2012-11-29Documentation: use correct highlighterDmitri Gribenko
llvm-svn: 168871
2012-11-28Documentation: improve formatting and remove unneeded empty lines.Dmitri Gribenko
llvm-svn: 168817
2012-06-12Use correct syntax highliter in code blocks. Noticed by Sean Silva.Dmitri Gribenko
llvm-svn: 158359
2012-05-08[docs] Add ReST version of all the man pages.Daniel Dunbar
- The POD versions are slated for execution, but are still around until llvm.org machinery is in place. llvm-svn: 156384