Skip to content

Commit 547a507

Browse files
committed
TypeSize: remove unused deprecated methods
Complete the migration in https://reviews.llvm.org/D141134 .
1 parent 13de759 commit 547a507

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

llvm/include/llvm/Support/TypeSize.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#define LLVM_SUPPORT_TYPESIZE_H
1717

1818
#include "llvm/ADT/ArrayRef.h"
19-
#include "llvm/Support/Compiler.h"
2019
#include "llvm/Support/MathExtras.h"
2120
#include "llvm/Support/raw_ostream.h"
2221

@@ -329,10 +328,8 @@ class TypeSize : public details::FixedOrScalableQuantity<TypeSize, uint64_t> {
329328
return TypeSize(MinimumSize, true);
330329
}
331330

332-
LLVM_DEPRECATED("Use getFixedValue() instead", "getFixedValue")
333331
constexpr ScalarTy getFixedSize() const { return getFixedValue(); }
334332

335-
LLVM_DEPRECATED("Use getKnownMinValue() instead", "getKnownMinValue")
336333
constexpr ScalarTy getKnownMinSize() const { return getKnownMinValue(); }
337334

338335
// All code for this class below this point is needed because of the

0 commit comments

Comments
 (0)