[llvm][NFC] Remove deprecated InterleaveGroup::getAlignment() function.

Differential Revision: https://reviews.llvm.org/D101907
This commit is contained in:
Guillaume Chatelet 2021-05-06 07:40:18 +00:00
parent a065efa302
commit 040f4a97cd
1 changed files with 0 additions and 4 deletions

View File

@ -602,10 +602,6 @@ public:
bool isReverse() const { return Reverse; }
uint32_t getFactor() const { return Factor; }
LLVM_ATTRIBUTE_DEPRECATED(uint32_t getAlignment() const,
"Use getAlign instead.") {
return Alignment.value();
}
Align getAlign() const { return Alignment; }
uint32_t getNumMembers() const { return Members.size(); }