commit fb9673f2081b6f29fe3979f07c3224b2e7be8010 (tree)
parent a2df84d0ffe3b7bce96f55a5d7063630aac75116
Author: Jakub Konka <kubkon@jakubkonka.com>
Date: Thu, 28 Mar 2024 18:36:58 +0100
lib/std/coff: add ImportNameType.NAME_EXPORTAS variant
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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,
_,
};