diff options
author | Changpeng Fang <changpeng.fang@amd.com> | 2010-08-23 18:50:22 +0000 |
---|---|---|
committer | Changpeng Fang <cfang@gcc.gnu.org> | 2010-08-23 18:50:22 +0000 |
commit | 756f50ce3852f45ea8eb04797de67087936bdd43 (patch) | |
tree | 6e3c325757231d8030398aece3af2c9677c39e6c /gcc | |
parent | c0d15a7748467574548cd61de68dbf9ae9215428 (diff) | |
download | gcc-756f50ce3852f45ea8eb04797de67087936bdd43.zip gcc-756f50ce3852f45ea8eb04797de67087936bdd43.tar.gz gcc-756f50ce3852f45ea8eb04797de67087936bdd43.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-loop-prefetch.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3f17b2b..27b0df2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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): diff --git a/gcc/tree-ssa-loop-prefetch.c b/gcc/tree-ssa-loop-prefetch.c index 4e7068f..e19d876 100644 --- a/gcc/tree-ssa-loop-prefetch.c +++ b/gcc/tree-ssa-loop-prefetch.c @@ -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; |