diff options
author | Jeremy Morse <jeremy.morse.llvm@gmail.com> | 2019-04-15 10:23:22 +0000 |
---|---|---|
committer | Jeremy Morse <jeremy.morse.llvm@gmail.com> | 2019-04-15 10:23:22 +0000 |
commit | 7a112c44ff41df81edd0d1c7b3b9ebaa72e8698e (patch) | |
tree | 3176f1bae6ffd69c09f37048da47a98c0aca361c /llvm/docs/SourceLevelDebugging.rst | |
parent | e038fa7292cd837beda76acb8a1d241b3095cbec (diff) | |
download | bcm5719-llvm-7a112c44ff41df81edd0d1c7b3b9ebaa72e8698e.tar.gz bcm5719-llvm-7a112c44ff41df81edd0d1c7b3b9ebaa72e8698e.zip |
[Docs] Switch a code block from LLVM to text
While I can't replicate this locally, it looks like the buildbots don't
recognize the IR block in r358385 l764 as IR. Downgrade it to being just
text while I look into it.
http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/30132
llvm-svn: 358391
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.rst')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index 977b7b7e745..977c97c2cbd 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -761,7 +761,7 @@ straightforwards: determining the variable location in every basic block requries the consideraton of control flow. Consider the following IR, which presents several difficulties: -.. code-block:: llvm +.. code-block:: text define dso_local i32 @foo(i1 %cond, i32 %input) !dbg !12 { entry: |