From 4a365ad43016e3bf8ce4d0383706a57f5d59976d Mon Sep 17 00:00:00 2001 From: Nate Begeman <natebegeman@mac.com> Date: Thu, 15 Nov 2007 21:15:26 +0000 Subject: Basic non-power-of-2 vector support git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44181 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/VMCore') diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 3e085f4..b8ce47b 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -1209,7 +1209,6 @@ static ManagedStatic<TypeMap<VectorValType, VectorType> > VectorTypes; VectorType *VectorType::get(const Type *ElementType, unsigned NumElements) { assert(ElementType && "Can't get vector of null types!"); - assert(isPowerOf2_32(NumElements) && "Vector length should be a power of 2!"); VectorValType PVT(ElementType, NumElements); VectorType *PT = VectorTypes->get(PVT); -- cgit v1.1