mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 16:09:57 +00:00
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:
parent
55cbec317d
commit
ef15029258
@ -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