ICU-22205 toolutil: Fix MASM generation for x86-64 and ARM64

This commit is contained in:
L. E. Segovia 2022-11-17 11:56:02 -03:00 committed by Markus Scherer
parent 167f8855a2
commit 62375dca3a

View file

@ -248,6 +248,15 @@ static const struct AssemblyType {
"\tALIGN 16\n"
"_%s\tLABEL DWORD\n",
"\tDWORD ","\nICUDATA_%s\tENDS\n\tEND\n",HEX_0H
},
{ "masm64",
"\tTITLE %s\n"
"; generated by genccode\n"
"\tPUBLIC _%s\n"
"ICUDATA_%s\tSEGMENT READONLY 'DATA'\n"
"\tALIGN 16\n"
"_%s\tLABEL DWORD\n",
"\tDWORD ","\nICUDATA_%s\tENDS\n\tEND\n",HEX_0H
}
};