diff options
| author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-04 22:45:33 +0000 |
|---|---|---|
| committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-04 22:45:33 +0000 |
| commit | 4763217ec0b46b8da472dc3df65cb5dd35cf151d (patch) | |
| tree | ee9240d88eb8c36273bfd06cbe25ecdc0ef86318 | |
| parent | 89c9a7aadbb508eeee75e409972a671ad7bc3eb8 (diff) | |
| download | ppe42-gcc-4763217ec0b46b8da472dc3df65cb5dd35cf151d.tar.gz ppe42-gcc-4763217ec0b46b8da472dc3df65cb5dd35cf151d.zip | |
2009-08-04 Andrew Pinski <pinskia@gmail.com>
* tree-ssa-alias.c: Fix some comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150470 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/tree-ssa-alias.c | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e94be4e3e20..1f1f4ae3f4e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-08-04 Andrew Pinski <pinskia@gmail.com> + + * tree-ssa-alias.c: Fix some comment typos. + 2009-08-04 Kaz Kojima <kkojima@gcc.gnu.org> * config/sh/linux-atomic.asm (ATOMIC_BOOL_COMPARE_AND_SWAP, diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 92297fc6cf2..cabbf05fe59 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -578,8 +578,8 @@ nonaliasing_component_refs_p (tree ref1, tree type1, } /* Return true if two memory references based on the variables BASE1 - and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1[ and - [OFFSET2, OFFSET2 + MAX_SIZE2[ may alias. */ + and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1] and + [OFFSET2, OFFSET2 + MAX_SIZE2] may alias. */ static bool decl_refs_may_alias_p (tree base1, @@ -599,8 +599,8 @@ decl_refs_may_alias_p (tree base1, } /* Return true if an indirect reference based on *PTR1 constrained - to [OFFSET1, OFFSET1 + MAX_SIZE1[ may alias a variable based on BASE2 - constrained to [OFFSET2, OFFSET2 + MAX_SIZE2[. *PTR1 and BASE2 have + to [OFFSET1, OFFSET1 + MAX_SIZE1] may alias a variable based on BASE2 + constrained to [OFFSET2, OFFSET2 + MAX_SIZE2]. *PTR1 and BASE2 have the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1 in which case they are computed on-demand. REF1 and REF2 if non-NULL are the complete memory reference trees. */ @@ -662,8 +662,8 @@ indirect_ref_may_alias_decl_p (tree ref1, tree ptr1, } /* Return true if two indirect references based on *PTR1 - and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1[ and - [OFFSET2, OFFSET2 + MAX_SIZE2[ may alias. *PTR1 and *PTR2 have + and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1] and + [OFFSET2, OFFSET2 + MAX_SIZE2] may alias. *PTR1 and *PTR2 have the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1 in which case they are computed on-demand. REF1 and REF2 if non-NULL are the complete memory reference trees. */ |

