btashton commented on issue #1649:
URL:
https://github.com/apache/incubator-nuttx/issues/1649#issuecomment-685899829
just built with this with no error:
```
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 */
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]