diff options
-rw-r--r-- | llvm/docs/Lexicon.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index e1f374281f4..d42ce90730f 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/docs/Lexicon.rst @@ -64,10 +64,10 @@ C **CSE** Common Subexpression Elimination. An optimization that removes common - subexpression compuation. For example ``(a+b)*(a+b)`` has two subexpressions - that are the same: ``(a+b)``. This optimization would perform the addition - only once and then perform the multiply (but only if it's computationally - correct/safe). + subexpression computation. For example ``(a+b)*(a+b)`` has two + subexpressions that are the same: ``(a+b)``. This optimization would + perform the addition only once and then perform the multiply (but only if + it's computationally correct/safe). D - |