[llvm] 29f8056 - [CodeGen] fix typo `def nxv1bf32` -> `def nxv1f32`

Ties Stuij via llvm-commits llvm-commits at lists.llvm.org
Wed May 27 09:52:28 PDT 2020


Author: Ties Stuij
Date: 2020-05-27T17:52:07+01:00
New Revision: 29f8056b54ea5ea6b333e3b8f11de2cc327d1421

URL: https://github.com/llvm/llvm-project/commit/29f8056b54ea5ea6b333e3b8f11de2cc327d1421
DIFF: https://github.com/llvm/llvm-project/commit/29f8056b54ea5ea6b333e3b8f11de2cc327d1421.diff

LOG: [CodeGen] fix typo `def nxv1bf32` -> `def nxv1f32`

The `Add bfloat MVT type` patch introduced a typo in the nxv1f32 definition
in llvm/include/llvm/CodeGen/ValueTypes.td:
https://reviews.llvm.org/D79706/new/#inline-740433

This patch fixes that.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/ValueTypes.td b/llvm/include/llvm/CodeGen/ValueTypes.td
index e08a33a50df6..caa3d4daab31 100644
--- a/llvm/include/llvm/CodeGen/ValueTypes.td
+++ b/llvm/include/llvm/CodeGen/ValueTypes.td
@@ -163,7 +163,7 @@ def nxv8f16  : ValueType<128, 128>; // n x  8 x f16 vector value
 def nxv2bf16 : ValueType<32 , 129>; // n x  2 x bf16 vector value
 def nxv4bf16 : ValueType<64 , 130>; // n x  4 x bf16 vector value
 def nxv8bf16 : ValueType<128, 131>; // n x  8 x bf16 vector value
-def nxv1bf32 : ValueType<32 , 132>; // n x  1 x f32 vector value
+def nxv1f32  : ValueType<32 , 132>; // n x  1 x f32 vector value
 def nxv2f32  : ValueType<64 , 133>; // n x  2 x f32 vector value
 def nxv4f32  : ValueType<128, 134>; // n x  4 x f32 vector value
 def nxv8f32  : ValueType<256, 135>; // n x  8 x f32 vector value


        


More information about the llvm-commits mailing list