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
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

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() static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetAsmSizeDirectives()
{ {
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret; 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 ); ret.insert( v );
} }