From 2120eed84f14f8bf56858b9a8173cab02cbdd870 Mon Sep 17 00:00:00 2001 From: Matias N Date: Wed, 2 Sep 2020 16:10:06 -0300 Subject: [PATCH] documentation: fix build warning --- Documentation/components/nxflat.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/components/nxflat.rst b/Documentation/components/nxflat.rst index 115a14fb79..22cce9f3bc 100644 --- a/Documentation/components/nxflat.rst +++ b/Documentation/components/nxflat.rst @@ -332,7 +332,7 @@ and, in ELF environments, another is the PLT (Procedure Lookup Table. For example, if your C code generated (ARM) assembly language like this without PIC: -.. code-block:: c-objdump +.. code-block:: asm ldr r1, .L0 /* Fetch the offset to 'x' */ ldr r0, [r10, r1] /* Load the value of 'x' with PIC offset */ @@ -342,7 +342,7 @@ without PIC: Then when PIC is enabled (say with the -fpic compiler option), it will generate code like this: -.. code-block:: c-objdump +.. code-block:: asm ldr r1, .L0 /* Fetch the offset to the GOT entry */ ldr r1, [r10, r1] /* Fetch the (relocated) address of 'x' from the GOT */