[PATCH] D77690: [SVE] Remove VectorType::isScalable()

Christopher Tetreault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 23 15:49:13 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG5d0c3a8026ea: [SVE] Remove VectorType::isScalable() (authored by ctetreau).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77690/new/

https://reviews.llvm.org/D77690

Files:
  llvm/include/llvm/IR/DerivedTypes.h


Index: llvm/include/llvm/IR/DerivedTypes.h
===================================================================
--- llvm/include/llvm/IR/DerivedTypes.h
+++ llvm/include/llvm/IR/DerivedTypes.h
@@ -525,10 +525,6 @@
   /// number of elements in the vector.
   ElementCount getElementCount() const { return EC; }
 
-  /// Returns whether or not this is a scalable vector (meaning the total
-  /// element count is a multiple of the minimum).
-  bool isScalable() const { return EC.Scalable; }
-
   /// Methods for support type inquiry through isa, cast, and dyn_cast.
   static bool classof(const Type *T) {
     return T->getTypeID() == FixedVectorTyID ||


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77690.259749.patch
Type: text/x-patch
Size: 652 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200423/56213182/attachment.bin>


More information about the llvm-commits mailing list