[llvm] r301770 - [MVT] fix typo in size of v1i8 MVT.

Guy Blank via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 30 05:47:59 PDT 2017


Author: guyblank
Date: Sun Apr 30 07:47:57 2017
New Revision: 301770

URL: http://llvm.org/viewvc/llvm-project?rev=301770&view=rev
Log:
[MVT] fix typo in size of v1i8 MVT.

Ths issue was found in the review of another patch https://reviews.llvm.org/D32540


Modified:
    llvm/trunk/include/llvm/CodeGen/ValueTypes.td

Modified: llvm/trunk/include/llvm/CodeGen/ValueTypes.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ValueTypes.td?rev=301770&r1=301769&r2=301770&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ValueTypes.td (original)
+++ llvm/trunk/include/llvm/CodeGen/ValueTypes.td Sun Apr 30 07:47:57 2017
@@ -42,7 +42,7 @@ def v64i1  : ValueType<64 , 19>;   //  6
 def v512i1 : ValueType<512, 20>;   // 512 x i1 vector value
 def v1024i1: ValueType<1024,21>;   //1024 x i1 vector value
 
-def v1i8   : ValueType<16,  22>;   //  1 x i8  vector value
+def v1i8   : ValueType<8,   22>;   //  1 x i8  vector value
 def v2i8   : ValueType<16 , 23>;   //  2 x i8  vector value
 def v4i8   : ValueType<32 , 24>;   //  4 x i8  vector value
 def v8i8   : ValueType<64 , 25>;   //  8 x i8  vector value




More information about the llvm-commits mailing list