diff options
author | Owen Anderson <resistor@mac.com> | 2007-06-08 20:57:08 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-06-08 20:57:08 +0000 |
commit | b232efaf48ae359fce9471b563e1da6d82b485f8 (patch) | |
tree | b33e8517b4020db2acfdba5ee59770070b82670e /llvm/lib/Transforms | |
parent | 55994f245373cec8f0f0147202916be69ab89ccb (diff) | |
download | bcm5719-llvm-b232efaf48ae359fce9471b563e1da6d82b485f8.tar.gz bcm5719-llvm-b232efaf48ae359fce9471b563e1da6d82b485f8.zip |
Fix typo in a comment.
llvm-svn: 37526
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GVNPRE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVNPRE.cpp b/llvm/lib/Transforms/Scalar/GVNPRE.cpp index ecc3005541e..446389ecda8 100644 --- a/llvm/lib/Transforms/Scalar/GVNPRE.cpp +++ b/llvm/lib/Transforms/Scalar/GVNPRE.cpp @@ -13,7 +13,7 @@ // the optimization. It replaces redundant values with uses of earlier // occurences of the same value. While this is beneficial in that it eliminates // unneeded computation, it also increases register pressure by creating large -// live ranges, and should be used with caution on platforms that a very +// live ranges, and should be used with caution on platforms that are very // sensitive to register pressure. // //===----------------------------------------------------------------------===// |