fixed typo

llvm-svn: 211808
This commit is contained in:
Sanjay Patel 2014-06-26 22:18:51 +00:00
parent 53f867ac45
commit 8a1ce76e33
1 changed files with 1 additions and 1 deletions

View File

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