Remove deprecated member functions (NFC)
Remove the member functions getByValAlign and getOrigAlign, there were no users left. Differential Revision: https://reviews.llvm.org/D99098
This commit is contained in:
parent
5c0fb026c9
commit
a0124f4e4d
|
|
@ -141,11 +141,6 @@ namespace ISD {
|
|||
bool isPointer() const { return IsPointer; }
|
||||
void setPointer() { IsPointer = 1; }
|
||||
|
||||
LLVM_ATTRIBUTE_DEPRECATED(unsigned getByValAlign() const,
|
||||
"Use getNonZeroByValAlign() instead") {
|
||||
MaybeAlign A = decodeMaybeAlign(ByValOrByRefAlign);
|
||||
return A ? A->value() : 0;
|
||||
}
|
||||
Align getNonZeroByValAlign() const {
|
||||
MaybeAlign A = decodeMaybeAlign(ByValOrByRefAlign);
|
||||
assert(A && "ByValAlign must be defined");
|
||||
|
|
@ -161,11 +156,6 @@ namespace ISD {
|
|||
setAlignImpl(A);
|
||||
}
|
||||
|
||||
LLVM_ATTRIBUTE_DEPRECATED(unsigned getOrigAlign() const,
|
||||
"Use getNonZeroOrigAlign() instead") {
|
||||
MaybeAlign A = decodeMaybeAlign(OrigAlign);
|
||||
return A ? A->value() : 0;
|
||||
}
|
||||
Align getNonZeroOrigAlign() const {
|
||||
return decodeMaybeAlign(OrigAlign).valueOrOne();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue