aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-profgen/PerfReader.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-12-02 21:11:40 -0800
committerKazu Hirata <kazu@google.com>2022-12-02 21:11:40 -0800
commitb4482f7ca04e852cf610ef0e16542c888844d93d (patch)
treec57a5c84ed6e99c56cbe9685401cef676e69f73f /llvm/tools/llvm-profgen/PerfReader.cpp
parent110115993cad38755afa0371caa87459a93d5451 (diff)
downloadllvm-b4482f7ca04e852cf610ef0e16542c888844d93d.zip
llvm-b4482f7ca04e852cf610ef0e16542c888844d93d.tar.gz
llvm-b4482f7ca04e852cf610ef0e16542c888844d93d.tar.bz2
[tools] Use std::nullopt instead of None (NFC)
This patch mechanically replaces None with std::nullopt where the compiler would warn if None were deprecated. The intent is to reduce the amount of manual work required in migrating from Optional to std::optional. 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
Diffstat (limited to 'llvm/tools/llvm-profgen/PerfReader.cpp')
-rw-r--r--llvm/tools/llvm-profgen/PerfReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-profgen/PerfReader.cpp b/llvm/tools/llvm-profgen/PerfReader.cpp
index 0f27429..14bc04b 100644
--- a/llvm/tools/llvm-profgen/PerfReader.cpp
+++ b/llvm/tools/llvm-profgen/PerfReader.cpp
@@ -396,7 +396,7 @@ PerfInputFile PerfScriptReader::convertPerfDataToTrace(
StringRef ScriptSampleArgs[] = {PerfPath, "script", "--show-mmap-events",
"-F", "ip,brstack", "--pid",
PIDs, "-i", PerfData};
- sys::ExecuteAndWait(PerfPath, ScriptSampleArgs, llvm::None, Redirects);
+ sys::ExecuteAndWait(PerfPath, ScriptSampleArgs, std::nullopt, Redirects);
return {PerfTraceFile, PerfFormat::PerfScript, PerfContent::UnknownContent};
}