Make a comment better.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43379 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2007-10-26 03:47:14 +00:00
parent 55cbec317d
commit ef15029258

View File

@ -338,9 +338,11 @@ BasicAliasAnalysis::alias(const Value *V1, unsigned V1Size,
return NoAlias;
// Otherwise, nothing is known...
} else if (O1 != O2) {
if (!isa<Argument>(O1))
// If they are two different objects, we know that we have no alias...
// If they are two different objects, and neither is an argument,
// we know that we have no alias...
return NoAlias;
}