aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-06-08 20:57:08 +0000
committerOwen Anderson <resistor@mac.com>2007-06-08 20:57:08 +0000
commita7f916cf89ffff5a467148bceb9a3cad2ade3acc (patch)
tree071bab6334829a1edc1e44c72bd8d0775f7d0fa0
parent8338ff5ff1819b64845774dc008667a3f05bd082 (diff)
downloadexternal_llvm-a7f916cf89ffff5a467148bceb9a3cad2ade3acc.tar.gz
external_llvm-a7f916cf89ffff5a467148bceb9a3cad2ade3acc.tar.bz2
external_llvm-a7f916cf89ffff5a467148bceb9a3cad2ade3acc.zip
Fix typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37526 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/GVNPRE.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GVNPRE.cpp b/lib/Transforms/Scalar/GVNPRE.cpp
index ecc3005541..446389ecda 100644
--- a/lib/Transforms/Scalar/GVNPRE.cpp
+++ b/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.
//
//===----------------------------------------------------------------------===//