1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[docs] fix typo in Lexicon.rst

Differential revision: https://reviews.llvm.org/D71844
This commit is contained in:
Alex Zinenko 2019-12-23 18:20:25 +01:00
parent 49a04ae84f
commit 72d454f3d3

View File

@ -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
-