diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2016-08-31 14:37:20 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2016-08-31 14:37:20 +0000 |
commit | 15b978a2c87ce1f53e31338907bd986795c0a4b6 (patch) | |
tree | a67e43f3a25b1f4da2853510a482d69525436227 | |
parent | 46b5b8838759324c25affab9e6d0285898d9ae0a (diff) | |
download | bcm5719-llvm-15b978a2c87ce1f53e31338907bd986795c0a4b6.tar.gz bcm5719-llvm-15b978a2c87ce1f53e31338907bd986795c0a4b6.zip |
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)
llvm-svn: 280247
-rw-r--r-- | llvm/docs/Coroutines.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/Coroutines.rst b/llvm/docs/Coroutines.rst index 5a95558c606..0e7cde7aa38 100644 --- a/llvm/docs/Coroutines.rst +++ b/llvm/docs/Coroutines.rst @@ -812,7 +812,7 @@ pointer that was returned by prior `coro.begin` call. 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) |