r268423 - AArch64: fixup comment after change

Tim Northover via cfe-commits cfe-commits at lists.llvm.org
Tue May 3 12:24:47 PDT 2016


Author: tnorthover
Date: Tue May  3 14:24:47 2016
New Revision: 268423

URL: http://llvm.org/viewvc/llvm-project?rev=268423&view=rev
Log:
AArch64: fixup comment after change

Modified:
    cfe/trunk/lib/CodeGen/TargetInfo.cpp

Modified: cfe/trunk/lib/CodeGen/TargetInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/TargetInfo.cpp?rev=268423&r1=268422&r2=268423&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/TargetInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/TargetInfo.cpp Tue May  3 14:24:47 2016
@@ -4613,7 +4613,7 @@ bool AArch64ABIInfo::isIllegalVectorType
     // 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);




More information about the cfe-commits mailing list