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:
parent
609997aa7d
commit
8bf547855a
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user