diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2017-11-06 11:47:24 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2017-11-06 11:47:24 +0000 |
commit | aaecdc44ae9e4d74f24c8de382435a2be1daf2d7 (patch) | |
tree | 1e18ddd91e4f64e0ae9f084282c69487dad8c6e4 /llvm/docs/CommandGuide/llvm-pdbutil.rst | |
parent | 669175836406721a9bd856749926f7b5ce6c22e2 (diff) | |
download | bcm5719-llvm-aaecdc44ae9e4d74f24c8de382435a2be1daf2d7.tar.gz bcm5719-llvm-aaecdc44ae9e4d74f24c8de382435a2be1daf2d7.zip |
[docs] Update code block for compatibility with Sphinx 1.5.1
It is currently not possible to build the documentation with cmake and
the same version of Sphinx (1.5.1) used to generate the public facing
documentation on llvm.org. When code blocks cannot be parsed by
Pygments, it generates a warning which is treated as an error.
In addition to being annoying and confusing for developers, this
needlessly increases the bar for newcomers that want to get involved.
This patch removes the language specifier from the affected block. The
result is the same as when parsing fails: the block are not highlighted.
llvm-svn: 317472
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-pdbutil.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-pdbutil.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/CommandGuide/llvm-pdbutil.rst b/llvm/docs/CommandGuide/llvm-pdbutil.rst index 8836f3a3eb4..29d487e0e74 100644 --- a/llvm/docs/CommandGuide/llvm-pdbutil.rst +++ b/llvm/docs/CommandGuide/llvm-pdbutil.rst @@ -142,7 +142,7 @@ Symbol Type Options Displays class definitions in the specified format. - .. code-block:: perl + .. code-block:: text =all - Display all class members including data, constants, typedefs, functions, etc (default) =layout - Only display members that contribute to class size. @@ -152,7 +152,7 @@ Symbol Type Options Displays classes in the specified order. - .. code-block:: perl + .. code-block:: text =none - Undefined / no particular sort order (default) =name - Sort classes by name @@ -200,7 +200,7 @@ Symbol Type Options Type of symbols to dump when -globals, -externals, or -module-syms is specified. (default all) - .. code-block:: perl + .. code-block:: text =thunks - Display thunk symbols =data - Display data symbols @@ -212,7 +212,7 @@ Symbol Type Options For symbols dumped via the -module-syms, -globals, or -externals options, sort the results in specified order. - .. code-block:: perl + .. code-block:: text =none - Undefined / no particular sort order =name - Sort symbols by name |