[llvm] r280247 - Changing a code block to text because Sphinx does not like it on the builder (http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/12517/steps/docs-llvm-html/logs/stdio)
Aaron Ballman via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 31 07:37:21 PDT 2016
Author: aaronballman
Date: Wed Aug 31 09:37:20 2016
New Revision: 280247
URL: http://llvm.org/viewvc/llvm-project?rev=280247&view=rev
Log:
Changing a code block to text because Sphinx does not like it on the builder (http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/12517/steps/docs-llvm-html/logs/stdio)
Modified:
llvm/trunk/docs/Coroutines.rst
Modified: llvm/trunk/docs/Coroutines.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Coroutines.rst?rev=280247&r1=280246&r2=280247&view=diff
==============================================================================
--- llvm/trunk/docs/Coroutines.rst (original)
+++ llvm/trunk/docs/Coroutines.rst Wed Aug 31 09:37:20 2016
@@ -812,7 +812,7 @@ pointer that was returned by prior `coro
Example (custom deallocation function):
"""""""""""""""""""""""""""""""""""""""
-.. code-block:: llvm
+.. code-block:: text
cleanup:
%mem = call i8* @llvm.coro.free(token %id, i8* %frame)
@@ -827,7 +827,7 @@ Example (custom deallocation function):
Example (standard deallocation functions):
""""""""""""""""""""""""""""""""""""""""""
-.. code-block:: llvm
+.. code-block:: text
cleanup:
%mem = call i8* @llvm.coro.free(token %id, i8* %frame)
More information about the llvm-commits
mailing list