diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-10 10:44:48 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-10 10:44:48 +0000 |
commit | 597ff315647cb37da623e03e63865491ef96990d (patch) | |
tree | e18647b48f7a6fbf0ceb4f1c9045c3e057e62d7a /gcc/tree-data-ref.c | |
parent | 782fc06978b6b623930e8521b384dc93f0d6d4d9 (diff) | |
download | gcc-597ff315647cb37da623e03e63865491ef96990d.tar.gz |
* c-common.c, c-pch.c, defaults.h, lambda-code.c, passes.c,
tree-data-ref.c, tree-flow.h, tree-ssa-operands.c,
tree-ssa-threadupdate.c, tree-vectorizer.c, tree-vectorizer.h,
value-prof.c: Fix comment typos. Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87288 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r-- | gcc/tree-data-ref.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c index db5dea62829..5ea9fecf435 100644 --- a/gcc/tree-data-ref.c +++ b/gcc/tree-data-ref.c @@ -146,7 +146,7 @@ array_base_name_differ_p (struct data_reference *a, /* at this point we know that base_a != base_b. However, pointer accesses of the form x=(*p) and y=(*q), which bases are p and q, may still by pointing to the same base. In SSAed GIMPLE p and q will be SSA_NAMES in this case. - Therefore, here we check if it's really two diferent declarations. */ + Therefore, here we check if it's really two different declarations. */ if (TREE_CODE (base_a) == VAR_DECL && TREE_CODE (base_b) == VAR_DECL) { *differ_p = true; @@ -525,7 +525,7 @@ analyze_array_indexes (struct loop *loop, return opnd0; } -/* For a data reference REF contained in the statemet STMT, initialize +/* For a data reference REF contained in the statement STMT, initialize a DATA_REFERENCE structure, and return it. IS_READ flag has to be set to true when REF is in the right hand side of an assignment. */ @@ -558,7 +558,7 @@ analyze_array (tree stmt, tree ref, bool is_read) return res; } -/* For a data reference REF contained in the statemet STMT, initialize +/* For a data reference REF contained in the statement STMT, initialize a DATA_REFERENCE structure, and return it. */ struct data_reference * |