aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit/docs/topics/objects.rst
diff options
context:
space:
mode:
authormarxin <mliska@suse.cz>2022-07-25 14:39:46 +0200
committerMartin Liska <mliska@suse.cz>2022-07-28 12:37:03 +0200
commit85c943f307934c10c6a3890b3a0305ac76a4f41c (patch)
tree0866ddfcacb866146e8d9ede0e920a706d40b8f1 /gcc/jit/docs/topics/objects.rst
parent85cf5a23772ee14b1b19320f19a4749f874854d7 (diff)
downloadgcc-85c943f307934c10c6a3890b3a0305ac76a4f41c.zip
gcc-85c943f307934c10c6a3890b3a0305ac76a4f41c.tar.gz
gcc-85c943f307934c10c6a3890b3a0305ac76a4f41c.tar.bz2
jit,docs: use :expr:`type *` for pointers to a type
gcc/jit/ChangeLog: * docs/cp/intro/tutorial02.rst: Use :expr:`type *` for pointers to a type * docs/cp/topics/asm.rst: Likewise. * docs/cp/topics/contexts.rst: Likewise. * docs/cp/topics/expressions.rst: Likewise. * docs/cp/topics/functions.rst: Likewise. * docs/cp/topics/objects.rst: Likewise. * docs/intro/tutorial02.rst: Likewise. * docs/intro/tutorial03.rst: Likewise. * docs/intro/tutorial04.rst: Likewise. * docs/intro/tutorial05.rst: Likewise. * docs/topics/compilation.rst: Likewise. * docs/topics/contexts.rst: Likewise. * docs/topics/objects.rst: Likewise.
Diffstat (limited to 'gcc/jit/docs/topics/objects.rst')
-rw-r--r--gcc/jit/docs/topics/objects.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/jit/docs/topics/objects.rst b/gcc/jit/docs/topics/objects.rst
index cd117e2..42f3675 100644
--- a/gcc/jit/docs/topics/objects.rst
+++ b/gcc/jit/docs/topics/objects.rst
@@ -23,12 +23,12 @@ Objects
.. type:: gcc_jit_object
Almost every entity in the API (with the exception of
-:c:type:`gcc_jit_context *` and :c:type:`gcc_jit_result *`) is a
-"contextual" object, a :c:type:`gcc_jit_object *`
+:c:expr:`gcc_jit_context *` and :c:expr:`gcc_jit_result *`) is a
+"contextual" object, a :c:expr:`gcc_jit_object *`
A JIT object:
- * is associated with a :c:type:`gcc_jit_context *`.
+ * is associated with a :c:expr:`gcc_jit_context *`.
* is automatically cleaned up for you when its context is released so
you don't need to manually track and cleanup all objects, just the