aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Target/spirv.zig
AgeCommit message (Collapse)Author
2025-06-23remove `spirv` cpu archAli Cheraghi
2025-05-21target: auto-generated spirv featuresAli Cheraghi
2025-05-21spirv: write error value in an storage bufferAli Cheraghi
2025-03-18spirv: require int8/int16 capabilitiesAli Cheraghi
2025-03-17spirv/target: arbitrary_precision_integers feature supportAli Cheraghi
2025-03-17target: split `addresses` and `physical_storage_buffer` featuresAli Cheraghi
2025-02-24spirv: replace some unreachables with compile errorsAli Cheraghi
2025-02-18spirv: ziggify and remove unknown spirv featuresAli Cheraghi
`OpCapability` and `OpExtension` now can also be emitted from inline assembly
2025-02-18target: update spirv featuresAli Cheraghi
2024-08-28std: update `std.builtin.Type` fields to follow naming conventionsmlugg
The compiler actually doesn't need any functional changes for this: Sema does reification based on the tag indices of `std.builtin.Type` already! So, no zig1.wasm update is necessary. This change is necessary to disallow name clashes between fields and decls on a type, which is a prerequisite of #9938.
2024-08-12std.Target: Rename feature_set_fns to FeatureSetFnsLinus Groh
From https://ziglang.org/documentation/master/#Names: > If `x` is callable, and `x`'s return type is `type`, then `x` should > be `TitleCase`.
2024-01-01std.Target: flattenAndrew Kelley