diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2016-08-31 13:29:23 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2016-08-31 13:29:23 +0000 |
commit | 655e5a41e1f417f7e151b3b5ee71ff4968312f19 (patch) | |
tree | f2fc42ec42cc02da2edae8f1307c2696e5778e2d | |
parent | e7553e4eacf4eed17c5cdac3c552408a245ff892 (diff) | |
download | llvm-655e5a41e1f417f7e151b3b5ee71ff4968312f19.zip llvm-655e5a41e1f417f7e151b3b5ee71ff4968312f19.tar.gz llvm-655e5a41e1f417f7e151b3b5ee71ff4968312f19.tar.bz2 |
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/12516/steps/docs-llvm-html/logs/stdio)
llvm-svn: 280238
-rw-r--r-- | llvm/docs/Coroutines.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/Coroutines.rst b/llvm/docs/Coroutines.rst index 1593466..5a95558 100644 --- a/llvm/docs/Coroutines.rst +++ b/llvm/docs/Coroutines.rst @@ -242,7 +242,7 @@ In the cleanup block, we will make freeing the coroutine frame conditional on `coro.free`_ intrinsic. If allocation is elided, `coro.free`_ returns `null` thus skipping the deallocation code: -.. code-block:: llvm +.. code-block:: text cleanup: %mem = call i8* @llvm.coro.free(token %id, i8* %hdl) |