1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Make a comment better.

llvm-svn: 43379
This commit is contained in:
Owen Anderson 2007-10-26 03:47:14 +00:00
parent 609997aa7d
commit 8bf547855a

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;
}