[llvm] de0c7a0 - [llvm-objdump] Attempt to fix html doc generation issue.

Hongtao Yu via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 17 18:06:33 PDT 2020


Author: Hongtao Yu
Date: 2020-08-17T18:06:22-07:00
New Revision: de0c7a044b24ff85578e6e6773e563c02ae5e2ed

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

LOG: [llvm-objdump] Attempt to fix html doc generation issue.

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:

Differential Revision: https://reviews.llvm.org/D86123

Added: 
    

Modified: 
    llvm/docs/CommandGuide/llvm-objdump.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/CommandGuide/llvm-objdump.rst b/llvm/docs/CommandGuide/llvm-objdump.rst
index 2562b769d898..e4f063b60f9f 100644
--- a/llvm/docs/CommandGuide/llvm-objdump.rst
+++ b/llvm/docs/CommandGuide/llvm-objdump.rst
@@ -209,12 +209,14 @@ OPTIONS
     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>


        


More information about the llvm-commits mailing list