Add zmmword as known asm size directive.

This commit is contained in:
Bartosz Taudul
2023-11-08 02:00:58 +01:00
parent 95be71e974
commit 348be05605

View File

@@ -121,7 +121,7 @@ static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> G
static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetAsmSizeDirectives()
{
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret;
for( auto& v : { "byte", "word", "dword", "qword", "xmmword", "ymmword" } )
for( auto& v : { "byte", "word", "dword", "qword", "xmmword", "ymmword", "zmmword" } )
{
ret.insert( v );
}