diff --git a/lib/std/coff.zig b/lib/std/coff.zig index 9b5dca29c7..1461ac7fbc 100644 --- a/lib/std/coff.zig +++ b/lib/std/coff.zig @@ -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, _, };