diff options
author | Jeremy Morse <jeremy.morse.llvm@gmail.com> | 2019-04-15 10:04:52 +0000 |
---|---|---|
committer | Jeremy Morse <jeremy.morse.llvm@gmail.com> | 2019-04-15 10:04:52 +0000 |
commit | 38c1bda9f64023b92b8b843b9f328469f96b1e1b (patch) | |
tree | 2b71e4510af257bb9e55fef24ff03529f858f0a6 /llvm/docs/SourceLevelDebugging.rst | |
parent | f56a436891e998363bcc02ea09a58d38e0b39da3 (diff) | |
download | bcm5719-llvm-38c1bda9f64023b92b8b843b9f328469f96b1e1b.tar.gz bcm5719-llvm-38c1bda9f64023b92b8b843b9f328469f96b1e1b.zip |
[Docs] Correct some indentation muppetry that trips buildbots
llvm-svn: 358388
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.rst')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index e710bf9d6da..977b7b7e745 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -531,9 +531,9 @@ within the LLVM IR. By the end of CodeGen, this becomes a mapping from each variable to their machine locations over ranges of instructions. From IR to object emission, the major transformations which affect variable location fidelity are: - 1. Instruction Selection - 2. Register allocation - 3. Block layout +1. Instruction Selection +2. Register allocation +3. Block layout each of which are discussed below. In addition, instruction scheduling can significantly change the ordering of the program, and occurs in a number of |