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

Guillaume Chatelet via llvm-commits llvm-commits at lists.llvm.org
Thu May 6 00:40:33 PDT 2021


Author: Guillaume Chatelet
Date: 2021-05-06T07:40:18Z
New Revision: 040f4a97cd400e8464478e9b7c1d7d94d2bad708

URL: https://github.com/llvm/llvm-project/commit/040f4a97cd400e8464478e9b7c1d7d94d2bad708
DIFF: https://github.com/llvm/llvm-project/commit/040f4a97cd400e8464478e9b7c1d7d94d2bad708.diff

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

Differential Revision: https://reviews.llvm.org/D101907

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Analysis/VectorUtils.h b/llvm/include/llvm/Analysis/VectorUtils.h
index 181c42c2a0986..42310fa511f1f 100644
--- a/llvm/include/llvm/Analysis/VectorUtils.h
+++ b/llvm/include/llvm/Analysis/VectorUtils.h
@@ -602,10 +602,6 @@ template <typename InstTy> class InterleaveGroup {
 
   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(); }
 


        


More information about the llvm-commits mailing list