Fix a typo in the previous commit
authorChangpeng Fang <changpeng.fang@amd.com>
Mon, 23 Aug 2010 18:50:22 +0000 (18:50 +0000)
committerChangpeng Fang <cfang@gcc.gnu.org>
Mon, 23 Aug 2010 18:50:22 +0000 (18:50 +0000)
* tree-ssa-loop-prefetch.c (gather_memory_references_ref): Fix a
typo ("could not taken" --> "could not be taken")

From-SVN: r163485

gcc/ChangeLog
gcc/tree-ssa-loop-prefetch.c

index 3f17b2baed465e6901af9cdaedb59c1ffa2a5c96..27b0df21fc7ad9a4cacb06f1230be61e8e668d22 100644 (file)
@@ -1,3 +1,8 @@
+2010-08-23  Changpeng Fang  <changpeng.fang@amd.com>
+
+       * tree-ssa-loop-prefetch.c (gather_memory_references_ref) :
+       Fix a typo in a previous commit.
+
 2010-08-23  Kai Tietz  <kai.tietz@onevision.com>
 
        * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost):
index 4e7068f18593eb24e18ac99733ae8b0e0852f772..e19d876c74892d9419f6635ba29cea8e83edc21d 100644 (file)
@@ -539,7 +539,7 @@ gather_memory_references_ref (struct loop *loop, struct mem_ref_group **refs,
   if (step == NULL_TREE)
     return false;
 
-  /* Stop if the address of BASE could not taken.  */
+  /* Stop if the address of BASE could not be taken.  */
   if (may_be_nonaddressable_p (base))
     return false;