From patchwork Mon Jul 25 13:13:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 55078 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 01C84383802D for ; Mon, 25 Jul 2022 13:15:36 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by sourceware.org (Postfix) with ESMTPS id 966803838206 for ; Mon, 25 Jul 2022 13:15:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 966803838206 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id D748B1FD38; Mon, 25 Jul 2022 13:15:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1658754918; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: resent-to:resent-cc:resent-from:resent-message-id; bh=Lbalap21C+dT/Ko3o23eJUVuiI9gXuF8GzCN5knjzYc=; b=FEPx1SeAyHEtt3oVugpFNYHDGFQJC3Lx/lKPwmhvQglKpHI01LNZabbIuP5zeEPFaPKhqM MDVKN6CqQlzAsaqdVwQp6KhHVrjZD8i/1gtOD7GNJvfd7Q2D7yjV5KI8/H8TmIpxBQxlQ7 MAtsAuuybV5J5CScQV4Vwr8BxTUGe48= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1658754918; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: resent-to:resent-cc:resent-from:resent-message-id; bh=Lbalap21C+dT/Ko3o23eJUVuiI9gXuF8GzCN5knjzYc=; b=ppPRQR6zU7mwc83y+syEYMRud5L0vKgqcQ92GgrAE9w7l45ZRhGY6+jAghcuRHdZoldraX pj6b26oc/FuejQCA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id BD6D313B12; Mon, 25 Jul 2022 13:15:18 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id tJT4LGaX3mIPdgAAMHmgww (envelope-from ); Mon, 25 Jul 2022 13:15:18 +0000 Resent-From: =?utf-8?q?Martin_Li=C5=A1ka?= Resent-To: GCC Patches Resent-Cc: David Malcolm Resent-Date: Mon, 25 Jul 2022 15:15:18 +0200 Resent-Message-ID: Message-Id: From: Martin Liska Date: Mon, 25 Jul 2022 15:13:08 +0200 Subject: [PATCH 0/7] jit,docs: remove warnings and modernize the docs To: gcc-patches@gcc.gnu.org X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, SPF_HELO_NONE, SPF_SOFTFAIL, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" The patch set modernizes the documentation and removes most of the reported Sphinx warnings. Ready for master? Thanks, Martin Martin Liska (7): jit,docs: use enum directive for enumeral types jit,docs: replace c:type:`int_type` with :expr:`int_type` jit,docs: various fixes jit,docs: compact function declarations jit,docs: use list-table instead of fixed table jit,docs: use :expr:`type *` for pointers to a type jit,docs: remove :ref:`modindex` gcc/jit/docs/conf.py | 3 + gcc/jit/docs/cp/intro/tutorial02.rst | 6 +- gcc/jit/docs/cp/intro/tutorial04.rst | 73 +++++++++----- gcc/jit/docs/cp/topics/asm.rst | 2 +- gcc/jit/docs/cp/topics/contexts.rst | 8 +- gcc/jit/docs/cp/topics/expressions.rst | 52 ++++------ gcc/jit/docs/cp/topics/functions.rst | 48 +++++----- gcc/jit/docs/cp/topics/objects.rst | 2 +- gcc/jit/docs/cp/topics/types.rst | 2 +- gcc/jit/docs/examples/tut04-toyvm/toyvm.c | 1 + gcc/jit/docs/index.rst | 8 -- gcc/jit/docs/intro/tutorial02.rst | 16 ++-- gcc/jit/docs/intro/tutorial03.rst | 28 +++--- gcc/jit/docs/intro/tutorial04.rst | 77 ++++++++++----- gcc/jit/docs/intro/tutorial05.rst | 41 +++++--- gcc/jit/docs/topics/compilation.rst | 38 ++++---- gcc/jit/docs/topics/contexts.rst | 12 +-- gcc/jit/docs/topics/expressions.rst | 111 ++++++++++++++-------- gcc/jit/docs/topics/function-pointers.rst | 2 +- gcc/jit/docs/topics/functions.rst | 2 +- gcc/jit/docs/topics/objects.rst | 6 +- gcc/jit/docs/topics/types.rst | 111 ++++++++++++++-------- 22 files changed, 379 insertions(+), 270 deletions(-)