[clang] 3770d2b - [X86] Fix typo of mtamx_int8

via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 21 06:16:06 PDT 2022


Author: Luo, Yuanke
Date: 2022-10-21T21:13:07+08:00
New Revision: 3770d2b9cad91e32f33c7cd51c8517e619438218

URL: https://github.com/llvm/llvm-project/commit/3770d2b9cad91e32f33c7cd51c8517e619438218
DIFF: https://github.com/llvm/llvm-project/commit/3770d2b9cad91e32f33c7cd51c8517e619438218.diff

LOG: [X86] Fix typo of mtamx_int8

Added: 
    

Modified: 
    clang/include/clang/Driver/Options.td

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td
index 3f975d7dd4fd1..0819ab51c922d 100644
--- a/clang/include/clang/Driver/Options.td
+++ b/clang/include/clang/Driver/Options.td
@@ -4522,7 +4522,7 @@ def m3dnowa : Flag<["-"], "m3dnowa">, Group<m_x86_Features_Group>;
 def mno_3dnowa : Flag<["-"], "mno-3dnowa">, Group<m_x86_Features_Group>;
 def mamx_bf16 : Flag<["-"], "mamx-bf16">, Group<m_x86_Features_Group>;
 def mno_amx_bf16 : Flag<["-"], "mno-amx-bf16">, Group<m_x86_Features_Group>;
-def mtamx_int8 : Flag<["-"], "mamx-int8">, Group<m_x86_Features_Group>;
+def mamx_int8 : Flag<["-"], "mamx-int8">, Group<m_x86_Features_Group>;
 def mno_amx_int8 : Flag<["-"], "mno-amx-int8">, Group<m_x86_Features_Group>;
 def mamx_tile : Flag<["-"], "mamx-tile">, Group<m_x86_Features_Group>;
 def mno_amx_tile : Flag<["-"], "mno-amx-tile">, Group<m_x86_Features_Group>;


        


More information about the cfe-commits mailing list