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",
.syntax = .joined_or_separate,
.zig_equivalent = .undefined,
.zig_equivalent = .@"undefined",
.pd1 = true,
.pd2 = false,
.psl = false,

View File

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