[llvm] d49613f - [Analysis] Use std::optional in CGSCCPassManager.cpp (NFC)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 25 10:18:58 PST 2022
Author: Kazu Hirata
Date: 2022-11-25T10:18:53-08:00
New Revision: d49613f4d8108f782c2dfdfa68b21a9e2489426c
URL: https://github.com/llvm/llvm-project/commit/d49613f4d8108f782c2dfdfa68b21a9e2489426c
DIFF: https://github.com/llvm/llvm-project/commit/d49613f4d8108f782c2dfdfa68b21a9e2489426c.diff
LOG: [Analysis] Use std::optional in CGSCCPassManager.cpp (NFC)
This is part of an effort to migrate from llvm::Optional to
std::optional:
https://discourse.llvm.org/t/deprecating-llvm-optional-x-hasvalue-getvalue-getvalueor/63716
Added:
Modified:
llvm/lib/Analysis/CGSCCPassManager.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/CGSCCPassManager.cpp b/llvm/lib/Analysis/CGSCCPassManager.cpp
index 1edda392e9b2..987dcd24d0e9 100644
--- a/llvm/lib/Analysis/CGSCCPassManager.cpp
+++ b/llvm/lib/Analysis/CGSCCPassManager.cpp
@@ -30,6 +30,7 @@
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <iterator>
+#include <optional>
#define DEBUG_TYPE "cgscc"
@@ -613,7 +614,7 @@ bool CGSCCAnalysisManagerModuleProxy::Result::invalidate(
G->buildRefSCCs();
for (auto &RC : G->postorder_ref_sccs())
for (auto &C : RC) {
- Optional<PreservedAnalyses> InnerPA;
+ std::optional<PreservedAnalyses> InnerPA;
// Check to see whether the preserved set needs to be adjusted based on
// module-level analysis invalidation triggering deferred invalidation
@@ -716,7 +717,7 @@ bool FunctionAnalysisManagerCGSCCProxy::Result::invalidate(
// necessary.
for (LazyCallGraph::Node &N : C) {
Function &F = N.getFunction();
- Optional<PreservedAnalyses> FunctionPA;
+ std::optional<PreservedAnalyses> FunctionPA;
// Check to see whether the preserved set needs to be pruned based on
// SCC-level analysis invalidation that triggers deferred invalidation
More information about the llvm-commits
mailing list