diff options
author | Alex Brachet <alexbrachetmialot@gmail.com> | 2019-07-04 21:19:05 +0000 |
---|---|---|
committer | Alex Brachet <alexbrachetmialot@gmail.com> | 2019-07-04 21:19:05 +0000 |
commit | 09a066b3aabfc4ea21d59d464f032f5f8a25c059 (patch) | |
tree | 7bab27a44536368224c13bede3c2f87a8ac77981 | |
parent | 989cad247609bc2f2ae4cd16f4e90047a7604b60 (diff) | |
download | bcm5719-llvm-09a066b3aabfc4ea21d59d464f032f5f8a25c059.tar.gz bcm5719-llvm-09a066b3aabfc4ea21d59d464f032f5f8a25c059.zip |
[docs] [tools] Fix see also links
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
-rw-r--r-- | llvm/docs/CommandGuide/bugpoint.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/llc.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/lli.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/llvm-as.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/llvm-bcanalyzer.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/llvm-dis.rst | 2 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/llvm-extract.rst | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/llvm/docs/CommandGuide/bugpoint.rst b/llvm/docs/CommandGuide/bugpoint.rst index 9cf4f021fb6..971807e7e98 100644 --- a/llvm/docs/CommandGuide/bugpoint.rst +++ b/llvm/docs/CommandGuide/bugpoint.rst @@ -194,4 +194,4 @@ if an error occurs, it will exit with a non-zero value. SEE ALSO -------- -opt|opt +:manpage:`opt(1)` diff --git a/llvm/docs/CommandGuide/llc.rst b/llvm/docs/CommandGuide/llc.rst index 2781564c8ab..b4e5dbf1b96 100644 --- a/llvm/docs/CommandGuide/llc.rst +++ b/llvm/docs/CommandGuide/llc.rst @@ -211,4 +211,4 @@ occurs, it will exit with a non-zero value. SEE ALSO -------- -lli +:manpage:`lli(1)` diff --git a/llvm/docs/CommandGuide/lli.rst b/llvm/docs/CommandGuide/lli.rst index 6d8cb4b36b5..b9892b64801 100644 --- a/llvm/docs/CommandGuide/lli.rst +++ b/llvm/docs/CommandGuide/lli.rst @@ -214,4 +214,4 @@ Otherwise, it will return the exit code of the program it executes. SEE ALSO -------- -:program:`llc` +:manpage:`llc(1)` diff --git a/llvm/docs/CommandGuide/llvm-as.rst b/llvm/docs/CommandGuide/llvm-as.rst index 77b1568a9e4..97dcaf15bd0 100644 --- a/llvm/docs/CommandGuide/llvm-as.rst +++ b/llvm/docs/CommandGuide/llvm-as.rst @@ -55,4 +55,4 @@ will exit with a non-zero value. SEE ALSO -------- -llvm-dis|llvm-dis, gccas|gccas +:manpage:`llvm-dis(1)`, as(1) diff --git a/llvm/docs/CommandGuide/llvm-bcanalyzer.rst b/llvm/docs/CommandGuide/llvm-bcanalyzer.rst index 1dec45dd5e5..36ad3998ea4 100644 --- a/llvm/docs/CommandGuide/llvm-bcanalyzer.rst +++ b/llvm/docs/CommandGuide/llvm-bcanalyzer.rst @@ -303,4 +303,4 @@ The detailed output provides additional information on a per-function basis. SEE ALSO -------- -:doc:`/CommandGuide/llvm-dis`, :doc:`/BitCodeFormat` +:manpage:`llvm-dis(1)`, :doc:`/BitCodeFormat` diff --git a/llvm/docs/CommandGuide/llvm-dis.rst b/llvm/docs/CommandGuide/llvm-dis.rst index 626ce6d9cdc..69200c6a3bd 100644 --- a/llvm/docs/CommandGuide/llvm-dis.rst +++ b/llvm/docs/CommandGuide/llvm-dis.rst @@ -51,4 +51,4 @@ occurs, it will exit with a non-zero value. SEE ALSO -------- -llvm-as|llvm-as +:manpage:`llvm-as(1)` diff --git a/llvm/docs/CommandGuide/llvm-extract.rst b/llvm/docs/CommandGuide/llvm-extract.rst index 40de0f1d1db..cd8828b2372 100644 --- a/llvm/docs/CommandGuide/llvm-extract.rst +++ b/llvm/docs/CommandGuide/llvm-extract.rst @@ -77,4 +77,4 @@ occurs, it will exit with a non-zero value. SEE ALSO -------- -bugpoint +:manpage:`bugpoint(1)` |