fix merge conflict with identifiers matching primitives

This commit is contained in:
Andrew Kelley 2023-01-09 15:12:10 -07:00
parent 5766c8ebc8
commit 55be10486e
2 changed files with 3 additions and 3 deletions

View File

@ -6336,7 +6336,7 @@ joinpd1("sycl-std="),
.{ .{
.name = "undefined", .name = "undefined",
.syntax = .joined_or_separate, .syntax = .joined_or_separate,
.zig_equivalent = .undefined, .zig_equivalent = .@"undefined",
.pd1 = true, .pd1 = true,
.pd2 = false, .pd2 = false,
.psl = false, .psl = false,

View File

@ -1661,7 +1661,7 @@ fn buildOutputType(
.install_name => { .install_name => {
install_name = it.only_arg; install_name = it.only_arg;
}, },
.undefined => { .@"undefined" => {
if (mem.eql(u8, "dynamic_lookup", it.only_arg)) { if (mem.eql(u8, "dynamic_lookup", it.only_arg)) {
linker_allow_shlib_undefined = true; linker_allow_shlib_undefined = true;
} else { } else {
@ -4730,7 +4730,7 @@ pub const ClangArgIterator = struct {
headerpad_max_install_names, headerpad_max_install_names,
compress_debug_sections, compress_debug_sections,
install_name, install_name,
undefined, @"undefined",
}; };
const Args = struct { const Args = struct {