Fix typo in a comment.
authorOwen Anderson <resistor@mac.com>
Fri, 8 Jun 2007 20:57:08 +0000 (20:57 +0000)
committerOwen Anderson <resistor@mac.com>
Fri, 8 Jun 2007 20:57:08 +0000 (20:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37526 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/GVNPRE.cpp

index ecc3005541e4c3ef07cd8f8bf2ce550471ef632c..446389ecda8d76e22c9749de1c286b54c44c9b86 100644 (file)
@@ -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.
 //
 //===----------------------------------------------------------------------===//