diff options
author | Hongtao Yu <hoy@fb.com> | 2020-08-17 17:41:49 -0700 |
---|---|---|
committer | Hongtao Yu <hoy@fb.com> | 2020-08-17 18:06:22 -0700 |
commit | de0c7a044b24ff85578e6e6773e563c02ae5e2ed (patch) | |
tree | 10bebc99fd59809017b0381a61b62cd0975e3b9a /llvm/docs/CommandGuide/llvm-objdump.rst | |
parent | 370330f084c05ee54f1c9bb54604dbe48f7e87dd (diff) | |
download | llvm-de0c7a044b24ff85578e6e6773e563c02ae5e2ed.zip llvm-de0c7a044b24ff85578e6e6773e563c02ae5e2ed.tar.gz llvm-de0c7a044b24ff85578e6e6773e563c02ae5e2ed.tar.bz2 |
[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
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-objdump.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objdump.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objdump.rst b/llvm/docs/CommandGuide/llvm-objdump.rst index 2562b76..e4f063b 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> |