diff options
author | cfang <cfang@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-23 18:50:22 +0000 |
---|---|---|
committer | cfang <cfang@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-23 18:50:22 +0000 |
commit | bd62669e2161ce0780c81e756a5b3b23d8b631a2 (patch) | |
tree | 6e3c325757231d8030398aece3af2c9677c39e6c /gcc/tree-ssa-loop-prefetch.c | |
parent | 5309e73e08fdb9639efc4efe0fe6a0388f8c768d (diff) |
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")
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163485 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-prefetch.c')
-rw-r--r-- | gcc/tree-ssa-loop-prefetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-prefetch.c b/gcc/tree-ssa-loop-prefetch.c index 4e7068f18593..e19d876c7489 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; |