aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-07-28 02:09:54 +0200
committerMartin Liska <mliska@suse.cz>2022-11-09 09:00:36 +0100
commit72318642439703bba8c83423d4706e06444254d6 (patch)
tree58f071a811fcd2993e1ee5c1e2213060a2911d3a /gcc/jit
parent1f5a932e89b0c2c4a7af7f849ca2e2e3dbf329e0 (diff)
downloadgcc-72318642439703bba8c83423d4706e06444254d6.zip
gcc-72318642439703bba8c83423d4706e06444254d6.tar.gz
gcc-72318642439703bba8c83423d4706e06444254d6.tar.bz2
sphinx: fix cross manual references
gcc/ada/ChangeLog: * doc/gnat_rm/index.rst: Fix cross manual refs. gcc/ChangeLog: * doc/gcc/gcc-command-options/options-controlling-the-kind-of-output.rst: Fix cross manual refs. * doc/gcc/language-standards-supported-by-gcc/references-for-other-languages.rst: Likewise. gcc/jit/ChangeLog: * doc/internals/index.rst: Fix cross manual refs. * doc/topics/contexts.rst: Likewise.
Diffstat (limited to 'gcc/jit')
-rw-r--r--gcc/jit/doc/internals/index.rst2
-rw-r--r--gcc/jit/doc/topics/contexts.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/jit/doc/internals/index.rst b/gcc/jit/doc/internals/index.rst
index 092380c..7ca4531 100644
--- a/gcc/jit/doc/internals/index.rst
+++ b/gcc/jit/doc/internals/index.rst
@@ -173,7 +173,7 @@ For example, the following invocation verbosely runs the testcase
(...shows full valgrind report for this test case...)
When running under valgrind, it's best to have configured gcc with
-:option:`--enable-valgrind-annotations`, which automatically suppresses
+:option:`install:--enable-valgrind-annotations`, which automatically suppresses
various known false positives.
Environment variables
diff --git a/gcc/jit/doc/topics/contexts.rst b/gcc/jit/doc/topics/contexts.rst
index b1a7a0a..0a07997 100644
--- a/gcc/jit/doc/topics/contexts.rst
+++ b/gcc/jit/doc/topics/contexts.rst
@@ -237,7 +237,7 @@ future activies on a context to the given `FILE *`.
a much simpler executable that performs the equivalent calls into
libgccjit, without needing the client code and its data.
- Typically you need to supply :option:`-Wno-unused-variable` when
+ Typically you need to supply :option:`gcc:-Wno-unused-variable` when
compiling the generated file (since the result of each API call is
assigned to a unique variable within the generated C source, and not
all are necessarily then used).
@@ -252,7 +252,7 @@ future activies on a context to the given `FILE *`.
Parameter "dumpname" corresponds to the equivalent gcc command-line
option, without the "-fdump-" prefix.
- For example, to get the equivalent of :option:`-fdump-tree-vrp1`,
+ For example, to get the equivalent of :option:`-fdump-tree-vrp <gcc:-fdump-tree-all>`,
supply ``"tree-vrp1"``:
.. code-block:: c