aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-01-26 16:49:49 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-01-26 16:49:49 -0700
commit56311b8bbb3002c83010ee29a1580f3e7b02c46b (patch)
treed400ed37186a766d41827f593780c23789066756 /tools
parent0ca3582a86da377a25ea144acf94531dd8a28722 (diff)
downloadzig-56311b8bbb3002c83010ee29a1580f3e7b02c46b.tar.gz
zig-56311b8bbb3002c83010ee29a1580f3e7b02c46b.zip
update clang options data to LLVM 16
Diffstat (limited to 'tools')
-rw-r--r--tools/update_clang_options.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig
index 85558576df..26927752a6 100644
--- a/tools/update_clang_options.zig
+++ b/tools/update_clang_options.zig
@@ -785,6 +785,8 @@ fn objSyntax(obj: *json.ObjectMap) ?Syntax {
return .joined;
} else if (std.mem.eql(u8, superclass, "CLCompileJoined")) {
return .joined;
+ } else if (std.mem.eql(u8, superclass, "CLDXCJoined")) {
+ return .joined;
} else if (std.mem.eql(u8, superclass, "JoinedOrSeparate")) {
return .joined_or_separate;
} else if (std.mem.eql(u8, superclass, "CLJoinedOrSeparate")) {