aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-12-02 19:43:04 -0800
committerKazu Hirata <kazu@google.com>2022-12-02 19:43:04 -0800
commit19aff0f37dd68ee51e78b764c0ce629ae73d1eef (patch)
tree07403086631814ae1ff7742c8c6dac4fb67b5088 /llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
parentfef3a16aeab660d0789c592985993bd68b51f517 (diff)
downloadllvm-19aff0f37dd68ee51e78b764c0ce629ae73d1eef.zip
llvm-19aff0f37dd68ee51e78b764c0ce629ae73d1eef.tar.gz
llvm-19aff0f37dd68ee51e78b764c0ce629ae73d1eef.tar.bz2
[Analysis] 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/lib/Analysis/BlockFrequencyInfoImpl.cpp')
-rw-r--r--llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp b/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
index ec8d318..be4a602 100644
--- a/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
+++ b/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
@@ -599,7 +599,7 @@ BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F,
bool AllowSynthetic) const {
auto EntryCount = F.getEntryCount(AllowSynthetic);
if (!EntryCount)
- return None;
+ return std::nullopt;
// Use 128 bit APInt to do the arithmetic to avoid overflow.
APInt BlockCount(128, EntryCount->getCount());
APInt BlockFreq(128, Freq);