[Attributor][NFC] Clang format the Attributor source files

This commit is contained in:
Johannes Doerfert 2021-05-06 11:27:06 -05:00
parent 8387d74c20
commit cb511531b9
1 changed files with 3 additions and 3 deletions

View File

@ -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();