1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

[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 64df44c038
commit 12675e7aea

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(); }