]> granicus.if.org Git - clang/commitdiff
AArch64: fixup comment after change
authorTim Northover <tnorthover@apple.com>
Tue, 3 May 2016 19:24:47 +0000 (19:24 +0000)
committerTim Northover <tnorthover@apple.com>
Tue, 3 May 2016 19:24:47 +0000 (19:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@268423 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TargetInfo.cpp

index 0777ba46c91009f0401665bd69a8afab8a4f06c8..4ee857304971f23b3f30110f442da68034101ed3 100644 (file)
@@ -4613,7 +4613,7 @@ bool AArch64ABIInfo::isIllegalVectorType(QualType Ty) const {
     // Check whether VT is legal.
     unsigned NumElements = VT->getNumElements();
     uint64_t Size = getContext().getTypeSize(VT);
-    // NumElements should be power of 2 between 1 and 16.
+    // NumElements should be power of 2.
     if (!llvm::isPowerOf2_32(NumElements))
       return true;
     return Size != 64 && (Size != 128 || NumElements == 1);