mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
Use PartialAlias to do better noalias lint checking.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121514 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91d747569a
commit
4a2a3eab2d
@ -232,10 +232,12 @@ void Lint::visitCallSite(CallSite CS) {
|
||||
// where nothing is known.
|
||||
if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
|
||||
for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE; ++BI)
|
||||
Assert1(AI == BI ||
|
||||
!(*BI)->getType()->isPointerTy() ||
|
||||
AA->alias(*AI, *BI) != AliasAnalysis::MustAlias,
|
||||
"Unusual: noalias argument aliases another argument", &I);
|
||||
if (AI != BI && (*BI)->getType()->isPointerTy()) {
|
||||
AliasAnalysis::AliasResult Result = AA->alias(*AI, *BI);
|
||||
Assert1(Result != AliasAnalysis::MustAlias &&
|
||||
Result != AliasAnalysis::PartialAlias,
|
||||
"Unusual: noalias argument aliases another argument", &I);
|
||||
}
|
||||
|
||||
// Check that an sret argument points to valid memory.
|
||||
if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
|
||||
|
Loading…
Reference in New Issue
Block a user