From 2cf00c37debd40725b255ac97579b25e1ac32493 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Fri, 8 Jun 2007 20:57:08 +0000 Subject: [PATCH] Fix typo in a comment. llvm-svn: 37526 --- lib/Transforms/Scalar/GVNPRE.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/GVNPRE.cpp b/lib/Transforms/Scalar/GVNPRE.cpp index ecc3005541e..446389ecda8 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. // //===----------------------------------------------------------------------===//