lib/std/coff: add ImportNameType.NAME_EXPORTAS variant

This commit is contained in:
Jakub Konka 2024-03-28 18:36:58 +01:00
parent a2df84d0ff
commit fb9673f208

View File

@ -1460,6 +1460,8 @@ pub const ImportNameType = enum(u3) {
/// The import name is the public symbol name, but skipping the leading ?, @, or optionally _,
/// and truncating at the first @.
NAME_UNDECORATE = 3,
/// https://github.com/llvm/llvm-project/pull/83211
NAME_EXPORTAS = 4,
_,
};