[clang] 16cea04 - Fix the Clang sphinx build

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 24 05:22:34 PST 2023


Author: Aaron Ballman
Date: 2023-01-24T08:21:53-05:00
New Revision: 16cea040d032deb1dae5538db0937888c02fc7f4

URL: https://github.com/llvm/llvm-project/commit/16cea040d032deb1dae5538db0937888c02fc7f4
DIFF: https://github.com/llvm/llvm-project/commit/16cea040d032deb1dae5538db0937888c02fc7f4.diff

LOG: Fix the Clang sphinx build

This addresses issues found by:
https://lab.llvm.org/buildbot/#/builders/92/builds/39084

Added: 
    

Modified: 
    clang/docs/OffloadingDesign.rst

Removed: 
    


################################################################################
diff  --git a/clang/docs/OffloadingDesign.rst b/clang/docs/OffloadingDesign.rst
index 5df8a320b4da7..6d2c0da312847 100644
--- a/clang/docs/OffloadingDesign.rst
+++ b/clang/docs/OffloadingDesign.rst
@@ -240,13 +240,13 @@ will use this information when :ref:`Device Linking`.
   .. table:: Offloading Sections
     :name: table-offloading_sections
 
-    +----------------------------------+--------------------------------------------------------------------+
-    |             Section              | Description                                                        |
-    +==================================+====================================================================+
-    | omp_offloading_entries           | Offloading entry information (see :ref:`table-tgt_offload_entry`)  |
-    +----------------------------------+--------------------------------------------------------------------+
-    | .llvm.offloading                 | Embedded device object file for the target device and architecture |
-    +----------------------------------+--------------------------------------------------------------------+
+    +----------------------------------+------------------------------------------------------------------------------+
+    |             Section              | Description                                                                  |
+    +==================================+==============================================================================+
+    | omp_offloading_entries           | Offloading entry information (see :ref:`table-tgt_offload_entry_structure`)  |
+    +----------------------------------+------------------------------------------------------------------------------+
+    | .llvm.offloading                 | Embedded device object file for the target device and architecture           |
+    +----------------------------------+------------------------------------------------------------------------------+
 
 .. _Device Linking:
 
@@ -286,7 +286,7 @@ Several 
diff erent structures are used to store offloading information. The
 linked device image and its associated offloading entries. The offloading
 entries are stored using the ``__start_omp_offloading_entries`` and
 ``__stop_omp_offloading_entries`` symbols generated by the linker using the
-:ref:`table-tgt_offload_entry`.
+:ref:`table-tgt_offload_entry_structure`.
 
   .. table:: __tgt_device_image Structure
     :name: table-device_image_structure


        


More information about the cfe-commits mailing list