[llvm] b479554 - [llvm][NFC] Remove deprecated Alignment::None()
Guillaume Chatelet via llvm-commits
llvm-commits at lists.llvm.org
Thu May 6 00:21:37 PDT 2021
Author: Guillaume Chatelet
Date: 2021-05-06T07:21:23Z
New Revision: b4795544d42b4c3d49fdf63b797b07f40242a427
URL: https://github.com/llvm/llvm-project/commit/b4795544d42b4c3d49fdf63b797b07f40242a427
DIFF: https://github.com/llvm/llvm-project/commit/b4795544d42b4c3d49fdf63b797b07f40242a427.diff
LOG: [llvm][NFC] Remove deprecated Alignment::None()
Differential Revision: https://reviews.llvm.org/D101905
Added:
Modified:
llvm/include/llvm/Support/Alignment.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Support/Alignment.h b/llvm/include/llvm/Support/Alignment.h
index 667434e8a407f..1176c026ba994 100644
--- a/llvm/include/llvm/Support/Alignment.h
+++ b/llvm/include/llvm/Support/Alignment.h
@@ -84,16 +84,6 @@ struct Align {
/// Needed to interact with C for instance.
uint64_t value() const { return uint64_t(1) << ShiftValue; }
- /// Returns a default constructed Align which corresponds to no alignment.
- /// It was decided to deprecate Align::None because it's too close to
- /// llvm::None which can be used to initialize `MaybeAlign`.
- /// MaybeAlign = llvm::None means unspecified alignment,
- /// Align = Align::None() means alignment of one byte.
- LLVM_ATTRIBUTE_DEPRECATED(constexpr static const Align None(),
- "Use Align() or Align(1) instead") {
- return Align();
- }
-
/// Allow constructions of constexpr Align.
template <size_t kValue> constexpr static LogValue Constant() {
return LogValue{static_cast<uint8_t>(CTLog2<kValue>())};
More information about the llvm-commits
mailing list