Fix a typo in the previous commit

* tree-ssa-loop-prefetch.c (gather_memory_references_ref): Fix a
	typo ("could not taken" --> "could not be taken")

From-SVN: r163485
This commit is contained in:
Changpeng Fang 2010-08-23 18:50:22 +00:00 committed by Changpeng Fang
parent c0d15a7748
commit 756f50ce38
2 changed files with 6 additions and 1 deletions

View 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):

View 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;