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

Guillaume Chatelet via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 5 07:14:23 PDT 2021


gchatelet created this revision.
gchatelet added a reviewer: courbet.
gchatelet requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D101907

Files:
  llvm/include/llvm/Analysis/VectorUtils.h


Index: llvm/include/llvm/Analysis/VectorUtils.h
===================================================================
--- llvm/include/llvm/Analysis/VectorUtils.h
+++ llvm/include/llvm/Analysis/VectorUtils.h
@@ -602,10 +602,6 @@
 
   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(); }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D101907.343035.patch
Type: text/x-patch
Size: 587 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210505/bc198326/attachment.bin>


More information about the llvm-commits mailing list