authorgravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2022-11-25 14:58:37+01:00
committergravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2023-04-09 01:51:48+02:00
log12ff36265448850add6917c20a49a7f56a95dfe4
tree93eb705b8aa9b8ff9ebfc5758a88fb51ef1a33c9
parentc6fbe0d5d89a7b2665a0afa7fad23027fd0b87ca
signaturelock-open Commit is signed but in an unrecognized format.

spirv: make genericName match target name.

Changes the 'generic name' of the target to spirv, from spir-v.

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/target.zig+1-1
...@@ -1276,7 +1276,7 @@ pub const Target = struct {...@@ -1276,7 +1276,7 @@ pub const Target = struct {
1276 .x86, .x86_64 => "x86",1276 .x86, .x86_64 => "x86",
1277 .nvptx, .nvptx64 => "nvptx",1277 .nvptx, .nvptx64 => "nvptx",
1278 .wasm32, .wasm64 => "wasm",1278 .wasm32, .wasm64 => "wasm",
1279 .spirv32, .spirv64 => "spir-v",1279 .spirv32, .spirv64 => "spirv",
1280 else => @tagName(arch),1280 else => @tagName(arch),
1281 };1281 };
1282 }1282 }