aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartinboehme <mboehme@google.com>2024-04-19 10:12:57 +0200
committerGitHub <noreply@github.com>2024-04-19 10:12:57 +0200
commit14122106320b88f114301bbf8694ceac9bb7a27a (patch)
tree07226eda8d229ec452ad749ad0ecb3ed721ead2f
parent14193f4320e26b75dc592abf952af1c63760665c (diff)
downloadllvm-14122106320b88f114301bbf8694ceac9bb7a27a.zip
llvm-14122106320b88f114301bbf8694ceac9bb7a27a.tar.gz
llvm-14122106320b88f114301bbf8694ceac9bb7a27a.tar.bz2
[clang][dataflow][NFC] Fix code formatting in DataflowEnvironment.cpp (#89352)
For some reason, when I merged #89235, two lines were mis-formatted. This patch corrects this; while I'm here, I'm also correcting other existing formatting errors.
-rw-r--r--clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp b/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
index 6998e6d..05395e07 100644
--- a/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
+++ b/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
@@ -400,8 +400,8 @@ public:
// Fields of non-record type are handled in
// `TransferVisitor::VisitInitListExpr()`.
if (Field->getType()->isRecordType())
- PropagateResultObject(Init,
- cast<RecordStorageLocation>(Loc->getChild(*Field)));
+ PropagateResultObject(
+ Init, cast<RecordStorageLocation>(Loc->getChild(*Field)));
}
}
@@ -610,8 +610,8 @@ Environment Environment::pushCall(const CallExpr *Call) const {
if (const auto *MethodCall = dyn_cast<CXXMemberCallExpr>(Call)) {
if (const Expr *Arg = MethodCall->getImplicitObjectArgument()) {
if (!isa<CXXThisExpr>(Arg))
- Env.ThisPointeeLoc =
- cast<RecordStorageLocation>(getStorageLocation(*Arg));
+ Env.ThisPointeeLoc =
+ cast<RecordStorageLocation>(getStorageLocation(*Arg));
// Otherwise (when the argument is `this`), retain the current
// environment's `ThisPointeeLoc`.
}
@@ -1083,7 +1083,7 @@ StorageLocation &Environment::createObjectInternal(const ValueDecl *D,
// be null.
if (InitExpr) {
if (auto *InitExprLoc = getStorageLocation(*InitExpr))
- return *InitExprLoc;
+ return *InitExprLoc;
}
// Even though we have an initializer, we might not get an
@@ -1191,9 +1191,7 @@ void Environment::dump(raw_ostream &OS) const {
DACtx->dumpFlowCondition(FlowConditionToken, OS);
}
-void Environment::dump() const {
- dump(llvm::dbgs());
-}
+void Environment::dump() const { dump(llvm::dbgs()); }
Environment::PrValueToResultObject Environment::buildResultObjectMap(
DataflowAnalysisContext *DACtx, const FunctionDecl *FuncDecl,