[llvm] r225367 - [X86] Fix 512->256 typo in comments. NFC.

Ahmed Bougacha ahmed.bougacha at gmail.com
Wed Jan 7 11:38:50 PST 2015


Author: ab
Date: Wed Jan  7 13:38:50 2015
New Revision: 225367

URL: http://llvm.org/viewvc/llvm-project?rev=225367&view=rev
Log:
[X86] Fix 512->256 typo in comments. NFC.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=225367&r1=225366&r2=225367&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Wed Jan  7 13:38:50 2015
@@ -1536,7 +1536,7 @@ void X86TargetLowering::resetOperationAc
     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
       MVT VT = (MVT::SimpleValueType)i;
 
-      // Do not attempt to promote non-256-bit vectors.
+      // Do not attempt to promote non-512-bit vectors.
       if (!VT.is512BitVector())
         continue;
 
@@ -1567,7 +1567,7 @@ void X86TargetLowering::resetOperationAc
 
       const unsigned EltSize = VT.getVectorElementType().getSizeInBits();
 
-      // Do not attempt to promote non-256-bit vectors.
+      // Do not attempt to promote non-512-bit vectors.
       if (!VT.is512BitVector())
         continue;
 





More information about the llvm-commits mailing list