diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 2001-03-12 15:40:51 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-03-12 15:40:51 -0500 |
commit | 981a4c34baa838711eea526c26f85aea1432a711 (patch) | |
tree | be5a5e56dba84a4b7ea9c1b23dc3ca88edb8facc | |
parent | 1877bd890d27327602b0d54c5b56b598807b3805 (diff) | |
download | gcc-981a4c34baa838711eea526c26f85aea1432a711.zip gcc-981a4c34baa838711eea526c26f85aea1432a711.tar.gz gcc-981a4c34baa838711eea526c26f85aea1432a711.tar.bz2 |
Fix typo
From-SVN: r40426
-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 6d794ba..c95b48c 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -312,7 +312,7 @@ objects_must_conflict_p (t1, t2) /* If neither has a type specified, we don't know if they'll conflict because we may be using them to store objects of various types, for example the argument and local variables areas of inlined functions. */ - if (t1 == 0 && t1 == 0) + if (t1 == 0 && t2 == 0) return 0; /* If one or the other has readonly fields or is readonly, |