diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2016-07-19 20:20:03 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2016-07-19 20:20:03 +0000 |
commit | a0c1f408157b0db18bdd2aaa66555e6d98880a24 (patch) | |
tree | f43802398d685968f86088e64e7e502a4e144fc8 /llvm/docs | |
parent | 3816c53f040cc6aa06425978dd504b0bd5b7899c (diff) | |
download | bcm5719-llvm-a0c1f408157b0db18bdd2aaa66555e6d98880a24.tar.gz bcm5719-llvm-a0c1f408157b0db18bdd2aaa66555e6d98880a24.zip |
This code block breaks the docs build (http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/11921/steps/docs-llvm-html/logs/stdio). Setting the code highlighting to none instead of llvm to hopefully get the bot stumbling back towards green.
llvm-svn: 276018
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/BitCodeFormat.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/BitCodeFormat.rst b/llvm/docs/BitCodeFormat.rst index ffa21763252..89c7c1b435b 100644 --- a/llvm/docs/BitCodeFormat.rst +++ b/llvm/docs/BitCodeFormat.rst @@ -596,7 +596,7 @@ will be encoded as 1. For example, instead of -.. code-block:: llvm +.. code-block:: none #n = load #n-1 #n+1 = icmp eq #n, #const0 @@ -604,7 +604,7 @@ For example, instead of version 1 will encode the instructions as -.. code-block:: llvm +.. code-block:: none #n = load #1 #n+1 = icmp eq #1, (#n+1)-#const0 |