diff options
author | Sanjay Patel <spatel@rotateright.com> | 2014-06-26 22:18:51 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2014-06-26 22:18:51 +0000 |
commit | 8a1ce76e335a8c798e4de9c16e38a5d6a2df0746 (patch) | |
tree | 1985706a23b358c33482e0cef6be16af92d8b051 /llvm/docs/Lexicon.rst | |
parent | 53f867ac45ab2bd572d44dc96e476d8f398b2be0 (diff) | |
download | bcm5719-llvm-8a1ce76e335a8c798e4de9c16e38a5d6a2df0746.tar.gz bcm5719-llvm-8a1ce76e335a8c798e4de9c16e38a5d6a2df0746.zip |
fixed typo
llvm-svn: 211808
Diffstat (limited to 'llvm/docs/Lexicon.rst')
-rw-r--r-- | llvm/docs/Lexicon.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index 11f1341f5cb..fccfd5f85d8 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/docs/Lexicon.rst @@ -50,7 +50,7 @@ C 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 compulationally + only once and then perform the multiply (but only if it's computationally correct/safe). D |