diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2001-11-28 23:32:40 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-11-28 23:32:40 -0800 |
commit | efc981bbe55621b884827ad7dca4a087bbc222be (patch) | |
tree | 883773776f8e7f0ea406ddb24a343185d8178c37 | |
parent | a1fa55444ba2fd245b4a20de681e6c9ae78a066d (diff) | |
download | gcc-efc981bbe55621b884827ad7dca4a087bbc222be.zip gcc-efc981bbe55621b884827ad7dca4a087bbc222be.tar.gz gcc-efc981bbe55621b884827ad7dca4a087bbc222be.tar.bz2 |
Fix comment typo.
From-SVN: r47437
-rw-r--r-- | gcc/alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index a92cf85..da9ca04 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -1799,7 +1799,7 @@ nonoverlapping_memrefs_p (x, y) offsety += INTVAL (MEM_OFFSET (y)), sizey -= INTVAL (MEM_OFFSET (y)); /* If a memref has both a size and an offset, we can use the smaller size. - We can't do this is the offset isn't know because we must view this + We can't do this if the offset isn't known because we must view this memref as being anywhere inside the DECL's MEM. */ if (MEM_SIZE (x) && MEM_OFFSET (x)) sizex = INTVAL (MEM_SIZE (x)); |