forked from OSchip/llvm-project
[Attributor][NFC] Clang format the Attributor source files
This commit is contained in:
parent
8387d74c20
commit
cb511531b9
|
@ -2293,8 +2293,8 @@ struct AAWillReturnImpl : public AAWillReturn {
|
|||
(!getAssociatedFunction() || !getAssociatedFunction()->mustProgress()))
|
||||
return false;
|
||||
|
||||
const auto &MemAA = A.getAAFor<AAMemoryBehavior>(*this, getIRPosition(),
|
||||
DepClassTy::NONE);
|
||||
const auto &MemAA =
|
||||
A.getAAFor<AAMemoryBehavior>(*this, getIRPosition(), DepClassTy::NONE);
|
||||
if (!MemAA.isAssumedReadOnly())
|
||||
return false;
|
||||
if (KnownOnly && !MemAA.isKnownReadOnly())
|
||||
|
@ -3609,7 +3609,7 @@ struct AADereferenceableFloating : AADereferenceableImpl {
|
|||
// TODO: track globally.
|
||||
bool CanBeNull, CanBeFreed;
|
||||
DerefBytes =
|
||||
Base->getPointerDereferenceableBytes(DL, CanBeNull, CanBeFreed);
|
||||
Base->getPointerDereferenceableBytes(DL, CanBeNull, CanBeFreed);
|
||||
T.GlobalState.indicatePessimisticFixpoint();
|
||||
} else {
|
||||
const DerefState &DS = AA.getState();
|
||||
|
|
Loading…
Reference in New Issue