aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/Local.cpp
diff options
context:
space:
mode:
authorJay Foad <jay.foad@amd.com>2024-09-19 16:16:38 +0100
committerGitHub <noreply@github.com>2024-09-19 16:16:38 +0100
commite03f427196ec67a8a5cfbdd658f9eabe9bce83ce (patch)
tree5c39989033e45fe09b7d589f923e0b6c9d20f917 /llvm/lib/Transforms/Utils/Local.cpp
parent14120227a34365e829d05c1413033d235d7d272c (diff)
downloadllvm-e03f427196ec67a8a5cfbdd658f9eabe9bce83ce.zip
llvm-e03f427196ec67a8a5cfbdd658f9eabe9bce83ce.tar.gz
llvm-e03f427196ec67a8a5cfbdd658f9eabe9bce83ce.tar.bz2
[LLVM] Use {} instead of std::nullopt to initialize empty ArrayRef (#109133)
It is almost always simpler to use {} instead of std::nullopt to initialize an empty ArrayRef. This patch changes all occurrences I could find in LLVM itself. In future the ArrayRef(std::nullopt_t) constructor could be deprecated or removed.
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp
index c85c819..725b512 100644
--- a/llvm/lib/Transforms/Utils/Local.cpp
+++ b/llvm/lib/Transforms/Utils/Local.cpp
@@ -3638,7 +3638,7 @@ void llvm::copyRangeMetadata(const DataLayout &DL, const LoadInst &OldLI,
unsigned BitWidth = DL.getPointerTypeSizeInBits(NewTy);
if (BitWidth == OldLI.getType()->getScalarSizeInBits() &&
!getConstantRangeFromMetadata(*N).contains(APInt(BitWidth, 0))) {
- MDNode *NN = MDNode::get(OldLI.getContext(), std::nullopt);
+ MDNode *NN = MDNode::get(OldLI.getContext(), {});
NewLI.setMetadata(LLVMContext::MD_nonnull, NN);
}
}