[PATCH] D86123: [llvm-objdump] Attempt to fix html doc generation issue.
Hongtao Yu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 17 17:42:10 PDT 2020
hoy created this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
hoy requested review of this revision.
https://reviews.llvm.org/D84191 caused a html doc build issue with the changes in `llvm-objdump.rst`. It looks like a blank line is missing from the `code-block` directives.
Test Plan:
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D86123
Files:
llvm/docs/CommandGuide/llvm-objdump.rst
Index: llvm/docs/CommandGuide/llvm-objdump.rst
===================================================================
--- llvm/docs/CommandGuide/llvm-objdump.rst
+++ llvm/docs/CommandGuide/llvm-objdump.rst
@@ -209,12 +209,14 @@
A non-symbolized branch instruction with a local target and pc-relative memory access like
.. code-block:: none
+
cmp eax, dword ptr [rip + 4112]
jge 0x20117e <_start+0x25>
might become
.. code-block:: none
+
<L0>:
cmp eax, dword ptr <g>
jge <L0>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86123.286183.patch
Type: text/x-patch
Size: 530 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200818/863240c4/attachment.bin>
More information about the llvm-commits
mailing list