public inbox for jit@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] JIT: Update docs v2
@ 2022-02-19 15:34 Petter Tomner
  2022-04-01 13:24 ` David Malcolm
  0 siblings, 1 reply; 6+ messages in thread
From: Petter Tomner @ 2022-02-19 15:34 UTC (permalink / raw)
  To: jit, gcc-patches

Please disregard the prior patch I sent some minute ago. I spotted an copy-paste error, corrected bellow:

From 7f1d849319318a4cfd304279840899f928f9b86d Mon Sep 17 00:00:00 2001
From: Petter Tomner <tomner@kth.se>
Date: Sat, 19 Feb 2022 16:01:54 +0100
Subject: [PATCH] jit: Update docs

Update docs concerning linking and fix formatting errors. 'make html' looks fine.

/gcc/jit/docs/topics:
	* compatibility.rst: Add 19 tag
	* compilation.rst: Linking
	* contexts.rst: Linking example
	* expressions.rst: Fix formatting and dropped 's'

Signed-off-by:
Petter Tomner	2022-02-19	<tomner@kth.se>
---
 gcc/jit/docs/topics/compatibility.rst | 12 ++++++++++++
 gcc/jit/docs/topics/compilation.rst   |  8 ++------
 gcc/jit/docs/topics/contexts.rst      |  5 +++++
 gcc/jit/docs/topics/expressions.rst   | 15 ++++++++++-----
 4 files changed, 29 insertions(+), 11 deletions(-)

diff --git a/gcc/jit/docs/topics/compatibility.rst b/gcc/jit/docs/topics/compatibility.rst
index 16cebe31a10..03e3f3402a1 100644
--- a/gcc/jit/docs/topics/compatibility.rst
+++ b/gcc/jit/docs/topics/compatibility.rst
@@ -302,3 +302,15 @@ thread-local storage model of a variable:
 section of a variable:
 
   * :func:`gcc_jit_lvalue_set_link_section`
+
+.. _LIBGCCJIT_ABI_19:
+
+``LIBGCCJIT_ABI_19``
+-----------------------
+``LIBGCCJIT_ABI_19`` covers the addition of API entrypoints to set the initial value
+of a global with an rvalue and to use constructors:
+
+  * :func:`gcc_jit_context_new_array_constructor`
+  * :func:`gcc_jit_context_new_struct_constructor`
+  * :func:`gcc_jit_context_new_union_constructor`
+  * :func:`gcc_jit_global_set_initializer_rvalue`
diff --git a/gcc/jit/docs/topics/compilation.rst b/gcc/jit/docs/topics/compilation.rst
index 0f90db3b70e..9b1eed2dede 100644
--- a/gcc/jit/docs/topics/compilation.rst
+++ b/gcc/jit/docs/topics/compilation.rst
@@ -146,6 +146,8 @@ can also be used for implementing more traditional ahead-of-time
 compilers, via the :c:func:`gcc_jit_context_compile_to_file`
 API entrypoint.
 
+For linking in object files, use :c:func:`gcc_jit_context_add_driver_option`.
+
 .. function:: void \
               gcc_jit_context_compile_to_file (gcc_jit_context *ctxt, \
                                                enum gcc_jit_output_kind output_kind,\
@@ -188,12 +190,6 @@ Output kind                                     Typical suffix
 
    Compile the context to a dynamic library.
 
-   There is currently no support for specifying other libraries to link
-   against.
-
 .. c:macro:: GCC_JIT_OUTPUT_KIND_EXECUTABLE
 
    Compile the context to an executable.
-
-   There is currently no support for specifying libraries to link
-   against.
diff --git a/gcc/jit/docs/topics/contexts.rst b/gcc/jit/docs/topics/contexts.rst
index 68ab7ab1321..14ee57e2e54 100644
--- a/gcc/jit/docs/topics/contexts.rst
+++ b/gcc/jit/docs/topics/contexts.rst
@@ -569,6 +569,11 @@ Additional command-line options
       gcc_jit_context_add_driver_option (ctxt, "-lm");
       gcc_jit_context_add_driver_option (ctxt, "-fuse-linker-plugin");
 
+      gcc_jit_context_add_driver_option (ctxt, "obj.o");
+
+      gcc_jit_context_add_driver_option (ctxt, "-L.");
+      gcc_jit_context_add_driver_option (ctxt, "-lwhatever");
+
    Note that only some options are likely to be meaningful; there is no
    "frontend" within libgccjit, so typically only those affecting
    assembler and linker are likely to be useful.
diff --git a/gcc/jit/docs/topics/expressions.rst b/gcc/jit/docs/topics/expressions.rst
index 791a20398ca..9267b6d2ad6 100644
--- a/gcc/jit/docs/topics/expressions.rst
+++ b/gcc/jit/docs/topics/expressions.rst
@@ -152,6 +152,7 @@ Constructor expressions
    their presence using:
 
    .. code-block:: c
+
      #ifdef LIBGCCJIT_HAVE_CTORS
 
 .. function:: gcc_jit_rvalue *\
@@ -186,6 +187,7 @@ Constructor expressions
    presence using:
 
    .. code-block:: c
+
      #ifdef LIBGCCJIT_HAVE_CTORS
 
 .. function:: gcc_jit_rvalue *\
@@ -194,7 +196,7 @@ Constructor expressions
 						      gcc_jit_type *type,\
 						      size_t num_values,\
 						      gcc_jit_field **fields,\
-						      gcc_jit_rvalue **value)
+						      gcc_jit_rvalue **values)
 
 
    Create a constructor for a struct as an rvalue.
@@ -235,6 +237,7 @@ Constructor expressions
    presence using:
 
    .. code-block:: c
+
      #ifdef LIBGCCJIT_HAVE_CTORS
 
 .. function:: gcc_jit_rvalue *\
@@ -265,6 +268,7 @@ Constructor expressions
    presence using:
 
    .. code-block:: c
+
      #ifdef LIBGCCJIT_HAVE_CTORS
 
 Vector expressions
@@ -803,14 +807,14 @@ Global variables
       #ifdef LIBGCCJIT_HAVE_gcc_jit_global_set_initializer
 
 .. function:: gcc_jit_lvalue *\
-	      gcc_jit_global_set_initializer_rvalue (gcc_jit_lvalue *global,
+	      gcc_jit_global_set_initializer_rvalue (gcc_jit_lvalue *global,\
 	                                             gcc_jit_rvalue *init_value)
 
    Set the initial value of a global with an rvalue.
 
    The rvalue needs to be a constant expression, e.g. no function calls.
 
-   The global can't have the ``kind`` :ref:`GCC_JIT_GLOBAL_IMPORTED`.
+   The global can't have the ``kind`` :c:macro:`GCC_JIT_GLOBAL_IMPORTED`.
 
    As a non-comprehensive example it is OK to do the equivalent of:
 
@@ -822,8 +826,9 @@ Global variables
        const int baz = 3; /* rvalue from gcc_jit_context_rvalue_from_int.  */
        int boz = baz; /* rvalue from gcc_jit_lvalue_as_rvalue.  */
 
-   Use together with :ref:`gcc_jit_context_new_constructor` to
-   initialize structs, unions and arrays.
+   Use together with :c:func:`gcc_jit_context_new_struct_constructor`,
+   :c:func:`gcc_jit_context_new_union_constructor`, :c:func:`gcc_jit_context_new_array_constructor`
+   to initialize structs, unions and arrays.
 
    On success, returns the ``global`` parameter unchanged. Otherwise, ``NULL``.
 
-- 
2.34.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] JIT: Update docs v2
  2022-02-19 15:34 [PATCH] JIT: Update docs v2 Petter Tomner
@ 2022-04-01 13:24 ` David Malcolm
  2022-04-01 13:27   ` [committed] jit: further doc fixes David Malcolm
  0 siblings, 1 reply; 6+ messages in thread
From: David Malcolm @ 2022-04-01 13:24 UTC (permalink / raw)
  To: Petter Tomner, jit, gcc-patches

On Sat, 2022-02-19 at 15:34 +0000, Petter Tomner via Gcc-patches wrote:
> Please disregard the prior patch I sent some minute ago. I spotted an
> copy-paste error, corrected bellow:
> 
> From 7f1d849319318a4cfd304279840899f928f9b86d Mon Sep 17 00:00:00 2001
> From: Petter Tomner <tomner@kth.se>
> Date: Sat, 19 Feb 2022 16:01:54 +0100
> Subject: [PATCH] jit: Update docs
> 
> Update docs concerning linking and fix formatting errors. 'make html'
> looks fine.
> 
> /gcc/jit/docs/topics:
>         * compatibility.rst: Add 19 tag
>         * compilation.rst: Linking
>         * contexts.rst: Linking example
>         * expressions.rst: Fix formatting and dropped 's'
> 
> Signed-off-by:
> Petter Tomner   2022-02-19      <tomner@kth.se>
> ---
>  gcc/jit/docs/topics/compatibility.rst | 12 ++++++++++++
>  gcc/jit/docs/topics/compilation.rst   |  8 ++------
>  gcc/jit/docs/topics/contexts.rst      |  5 +++++
>  gcc/jit/docs/topics/expressions.rst   | 15 ++++++++++-----
>  4 files changed, 29 insertions(+), 11 deletions(-)


Thanks for these fixes, and sorry for the delayed in reviewing them.

I doublechecked them, and have pushed them to trunk as
r12-7958-gaed0f014781ee3.

Dave


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [committed] jit: further doc fixes
  2022-04-01 13:24 ` David Malcolm
@ 2022-04-01 13:27   ` David Malcolm
  2022-04-01 16:26     ` Eric Gallager
  0 siblings, 1 reply; 6+ messages in thread
From: David Malcolm @ 2022-04-01 13:27 UTC (permalink / raw)
  To: gcc-patches, jit, Petter Tomner

Further jit doc fixes, which fix links to
gcc_jit_function_type_get_param_type and gcc_jit_struct_get_field.

I also regenerated libgccjit.texi (not included in the diff below).

Tested with "make html" and with a bootstrap.
Committed to trunk as r12-7959-g1a172da8a3f362.

gcc/jit/ChangeLog:
	* docs/topics/expressions.rst: Fix formatting.
	* docs/topics/types.rst: Likewise.
 	* docs/_build/texinfo/libgccjit.texi: Regenerate

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
---
 gcc/jit/docs/topics/expressions.rst | 8 ++++----
 gcc/jit/docs/topics/types.rst       | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gcc/jit/docs/topics/expressions.rst b/gcc/jit/docs/topics/expressions.rst
index 9267b6d2ad6..d51264af73f 100644
--- a/gcc/jit/docs/topics/expressions.rst
+++ b/gcc/jit/docs/topics/expressions.rst
@@ -24,7 +24,7 @@ Rvalues
 -------
 .. type:: gcc_jit_rvalue
 
-A :c:type:`gcc_jit_rvalue *` is an expression that can be computed.
+A :c:type:`gcc_jit_rvalue` is an expression that can be computed.
 
 It can be simple, e.g.:
 
@@ -602,7 +602,7 @@ Function calls
               gcc_jit_rvalue_set_bool_require_tail_call (gcc_jit_rvalue *call,\
                                                          int require_tail_call)
 
-   Given an :c:type:`gcc_jit_rvalue *` for a call created through
+   Given an :c:type:`gcc_jit_rvalue` for a call created through
    :c:func:`gcc_jit_context_new_call` or
    :c:func:`gcc_jit_context_new_call_through_ptr`, mark/clear the
    call as needing tail-call optimization.  The optimizer will
@@ -721,8 +721,8 @@ where the rvalue is computed by reading from the storage area.
 
       #ifdef LIBGCCJIT_HAVE_gcc_jit_lvalue_set_tls_model
 
-.. function:: void
-              gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue,
+.. function:: void\
+              gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue,\
                                                const char *section_name)
 
    Set the link section of a variable.
diff --git a/gcc/jit/docs/topics/types.rst b/gcc/jit/docs/topics/types.rst
index 9779ad26b6f..c2082c0ef3e 100644
--- a/gcc/jit/docs/topics/types.rst
+++ b/gcc/jit/docs/topics/types.rst
@@ -192,7 +192,7 @@ A compound type analagous to a C `struct`.
 
 A field within a :c:type:`gcc_jit_struct`.
 
-You can model C `struct` types by creating :c:type:`gcc_jit_struct *` and
+You can model C `struct` types by creating :c:type:`gcc_jit_struct` and
 :c:type:`gcc_jit_field` instances, in either order:
 
 * by creating the fields, then the structure.  For example, to model:
@@ -375,7 +375,7 @@ Reflection API
      Given a function type, return its number of parameters.
 
 .. function::  gcc_jit_type *\
-               gcc_jit_function_type_get_param_type (gcc_jit_function_type *function_type,
+               gcc_jit_function_type_get_param_type (gcc_jit_function_type *function_type,\
                                                      size_t index)
 
      Given a function type, return the type of the specified parameter.
@@ -417,7 +417,7 @@ Reflection API
      alignment qualifiers.
 
 .. function::  gcc_jit_field *\
-               gcc_jit_struct_get_field (gcc_jit_struct *struct_type,
+               gcc_jit_struct_get_field (gcc_jit_struct *struct_type,\
                                          size_t index)
 
      Get a struct field by index.
-- 
2.26.3


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [committed] jit: further doc fixes
  2022-04-01 13:27   ` [committed] jit: further doc fixes David Malcolm
@ 2022-04-01 16:26     ` Eric Gallager
  2022-04-01 22:55       ` David Malcolm
  2022-04-06 20:29       ` [committed] jit: fix location of .png files for "make jit.pdf" [PR102824] David Malcolm
  0 siblings, 2 replies; 6+ messages in thread
From: Eric Gallager @ 2022-04-01 16:26 UTC (permalink / raw)
  To: David Malcolm; +Cc: gcc-patches, jit, Petter Tomner

On Fri, Apr 1, 2022 at 9:28 AM David Malcolm via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> Further jit doc fixes, which fix links to
> gcc_jit_function_type_get_param_type and gcc_jit_struct_get_field.
>
> I also regenerated libgccjit.texi (not included in the diff below).
>
> Tested with "make html" and with a bootstrap.

 Could you test with `make pdf` and `make dvi` too, to see if this fixes 102824?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102824

> Committed to trunk as r12-7959-g1a172da8a3f362.
>
> gcc/jit/ChangeLog:
>         * docs/topics/expressions.rst: Fix formatting.
>         * docs/topics/types.rst: Likewise.
>         * docs/_build/texinfo/libgccjit.texi: Regenerate
>
> Signed-off-by: David Malcolm <dmalcolm@redhat.com>
> ---
>  gcc/jit/docs/topics/expressions.rst | 8 ++++----
>  gcc/jit/docs/topics/types.rst       | 6 +++---
>  2 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/gcc/jit/docs/topics/expressions.rst b/gcc/jit/docs/topics/expressions.rst
> index 9267b6d2ad6..d51264af73f 100644
> --- a/gcc/jit/docs/topics/expressions.rst
> +++ b/gcc/jit/docs/topics/expressions.rst
> @@ -24,7 +24,7 @@ Rvalues
>  -------
>  .. type:: gcc_jit_rvalue
>
> -A :c:type:`gcc_jit_rvalue *` is an expression that can be computed.
> +A :c:type:`gcc_jit_rvalue` is an expression that can be computed.
>
>  It can be simple, e.g.:
>
> @@ -602,7 +602,7 @@ Function calls
>                gcc_jit_rvalue_set_bool_require_tail_call (gcc_jit_rvalue *call,\
>                                                           int require_tail_call)
>
> -   Given an :c:type:`gcc_jit_rvalue *` for a call created through
> +   Given an :c:type:`gcc_jit_rvalue` for a call created through
>     :c:func:`gcc_jit_context_new_call` or
>     :c:func:`gcc_jit_context_new_call_through_ptr`, mark/clear the
>     call as needing tail-call optimization.  The optimizer will
> @@ -721,8 +721,8 @@ where the rvalue is computed by reading from the storage area.
>
>        #ifdef LIBGCCJIT_HAVE_gcc_jit_lvalue_set_tls_model
>
> -.. function:: void
> -              gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue,
> +.. function:: void\
> +              gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue,\
>                                                 const char *section_name)
>
>     Set the link section of a variable.
> diff --git a/gcc/jit/docs/topics/types.rst b/gcc/jit/docs/topics/types.rst
> index 9779ad26b6f..c2082c0ef3e 100644
> --- a/gcc/jit/docs/topics/types.rst
> +++ b/gcc/jit/docs/topics/types.rst
> @@ -192,7 +192,7 @@ A compound type analagous to a C `struct`.
>
>  A field within a :c:type:`gcc_jit_struct`.
>
> -You can model C `struct` types by creating :c:type:`gcc_jit_struct *` and
> +You can model C `struct` types by creating :c:type:`gcc_jit_struct` and
>  :c:type:`gcc_jit_field` instances, in either order:
>
>  * by creating the fields, then the structure.  For example, to model:
> @@ -375,7 +375,7 @@ Reflection API
>       Given a function type, return its number of parameters.
>
>  .. function::  gcc_jit_type *\
> -               gcc_jit_function_type_get_param_type (gcc_jit_function_type *function_type,
> +               gcc_jit_function_type_get_param_type (gcc_jit_function_type *function_type,\
>                                                       size_t index)
>
>       Given a function type, return the type of the specified parameter.
> @@ -417,7 +417,7 @@ Reflection API
>       alignment qualifiers.
>
>  .. function::  gcc_jit_field *\
> -               gcc_jit_struct_get_field (gcc_jit_struct *struct_type,
> +               gcc_jit_struct_get_field (gcc_jit_struct *struct_type,\
>                                           size_t index)
>
>       Get a struct field by index.
> --
> 2.26.3
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [committed] jit: further doc fixes
  2022-04-01 16:26     ` Eric Gallager
@ 2022-04-01 22:55       ` David Malcolm
  2022-04-06 20:29       ` [committed] jit: fix location of .png files for "make jit.pdf" [PR102824] David Malcolm
  1 sibling, 0 replies; 6+ messages in thread
From: David Malcolm @ 2022-04-01 22:55 UTC (permalink / raw)
  To: Eric Gallager; +Cc: gcc-patches, jit, Petter Tomner

On Fri, 2022-04-01 at 12:26 -0400, Eric Gallager wrote:
> On Fri, Apr 1, 2022 at 9:28 AM David Malcolm via Gcc-patches
> <gcc-patches@gcc.gnu.org> wrote:
> > 
> > Further jit doc fixes, which fix links to
> > gcc_jit_function_type_get_param_type and gcc_jit_struct_get_field.
> > 
> > I also regenerated libgccjit.texi (not included in the diff below).
> > 
> > Tested with "make html" and with a bootstrap.
> 
>  Could you test with `make pdf` and `make dvi` too, to see if this
> fixes 102824?
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102824

FWIW it doesn't fix that, but I've added some notes to that bug with a
possible fix.

Dave





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [committed] jit: fix location of .png files for "make jit.pdf" [PR102824]
  2022-04-01 16:26     ` Eric Gallager
  2022-04-01 22:55       ` David Malcolm
@ 2022-04-06 20:29       ` David Malcolm
  1 sibling, 0 replies; 6+ messages in thread
From: David Malcolm @ 2022-04-06 20:29 UTC (permalink / raw)
  To: Eric Gallager; +Cc: gcc-patches, jit, Petter Tomner

On Fri, 2022-04-01 at 12:26 -0400, Eric Gallager wrote:
> On Fri, Apr 1, 2022 at 9:28 AM David Malcolm via Gcc-patches
> <gcc-patches@gcc.gnu.org> wrote:
> > 
> > Further jit doc fixes, which fix links to
> > gcc_jit_function_type_get_param_type and gcc_jit_struct_get_field.
> > 
> > I also regenerated libgccjit.texi (not included in the diff below).
> > 
> > Tested with "make html" and with a bootstrap.
> 
>  Could you test with `make pdf` and `make dvi` too, to see if this
> fixes 102824?
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102824

The following seems to fix "make pdf"

"make jit.dvi" is still failing after this; it seems to be looking for
.eps files for the images.


From c9a22b67954f4cd46a739bfe1ddedd544dbfc133 Mon Sep 17 00:00:00 2001
From: David Malcolm <dmalcolm@redhat.com>
Date: Thu, 31 Mar 2022 12:04:54 -0400
Subject: [committed] jit: fix location of .png files for "make jit.pdf" [PR102824]

"make jit.pdf" seems to be looking in
  gcc/jit/docs/_build/texinfo/libgccjit-figures
for the .png files, but they were in the source tree in:
  gcc/jit/docs/_build/texinfo

Fix "make jit.pdf" via:
  git mv \
    gcc/jit/docs/_build/texinfo/*.png \
    gcc/jit/docs/_build/texinfo/libgccjit-figures

Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu.
Manually verified that it fixes "make jit.pdf"; the generated
libgccjit.pdf seems to correctly contain the images.

Pushed to trunk as r12-8031-g790e9814454662.

gcc/jit/ChangeLog:
	PR jit/102824
	* docs/_build/texinfo/factorial.png: Move to...
	* docs/_build/texinfo/libgccjit-figures/factorial.png: ...here.
	* docs/_build/texinfo/factorial1.png: Move to...
	* docs/_build/texinfo/libgccjit-figures/factorial1.png: ...here.
	* docs/_build/texinfo/sum-of-squares.png: Move to...
	* docs/_build/texinfo/libgccjit-figures/sum-of-squares.png: ...here.
	* docs/_build/texinfo/sum-of-squares1.png: Move to...
	* docs/_build/texinfo/libgccjit-figures/sum-of-squares1.png: ...here.

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
---
 .../texinfo/{ => libgccjit-figures}/factorial.png   | Bin
 .../texinfo/{ => libgccjit-figures}/factorial1.png  | Bin
 .../{ => libgccjit-figures}/sum-of-squares.png      | Bin
 .../{ => libgccjit-figures}/sum-of-squares1.png     | Bin
 4 files changed, 0 insertions(+), 0 deletions(-)
 rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/factorial.png (100%)
 rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/factorial1.png (100%)
 rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/sum-of-squares.png (100%)
 rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/sum-of-squares1.png (100%)

diff --git a/gcc/jit/docs/_build/texinfo/factorial.png b/gcc/jit/docs/_build/texinfo/libgccjit-figures/factorial.png
similarity index 100%
rename from gcc/jit/docs/_build/texinfo/factorial.png
rename to gcc/jit/docs/_build/texinfo/libgccjit-figures/factorial.png
diff --git a/gcc/jit/docs/_build/texinfo/factorial1.png b/gcc/jit/docs/_build/texinfo/libgccjit-figures/factorial1.png
similarity index 100%
rename from gcc/jit/docs/_build/texinfo/factorial1.png
rename to gcc/jit/docs/_build/texinfo/libgccjit-figures/factorial1.png
diff --git a/gcc/jit/docs/_build/texinfo/sum-of-squares.png b/gcc/jit/docs/_build/texinfo/libgccjit-figures/sum-of-squares.png
similarity index 100%
rename from gcc/jit/docs/_build/texinfo/sum-of-squares.png
rename to gcc/jit/docs/_build/texinfo/libgccjit-figures/sum-of-squares.png
diff --git a/gcc/jit/docs/_build/texinfo/sum-of-squares1.png b/gcc/jit/docs/_build/texinfo/libgccjit-figures/sum-of-squares1.png
similarity index 100%
rename from gcc/jit/docs/_build/texinfo/sum-of-squares1.png
rename to gcc/jit/docs/_build/texinfo/libgccjit-figures/sum-of-squares1.png
-- 
2.26.3




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-04-06 20:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-19 15:34 [PATCH] JIT: Update docs v2 Petter Tomner
2022-04-01 13:24 ` David Malcolm
2022-04-01 13:27   ` [committed] jit: further doc fixes David Malcolm
2022-04-01 16:26     ` Eric Gallager
2022-04-01 22:55       ` David Malcolm
2022-04-06 20:29       ` [committed] jit: fix location of .png files for "make jit.pdf" [PR102824] David Malcolm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).