aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/spirv.zig
diff options
context:
space:
mode:
authorMaciej 'vesim' KuliƄski <vesim809@pm.me>2022-12-09 22:18:18 +0100
committerVeikka Tuominen <git@vexu.eu>2023-01-04 01:26:50 +0200
commit2b9478ce12a5556a9ef596d98a14347be8daee4a (patch)
treef52142db643c655746ca3950f746e6f5555f5171 /src/codegen/spirv.zig
parentfd0fb26aba57ba14676dafc4c294bb5d9e75a649 (diff)
downloadzig-2b9478ce12a5556a9ef596d98a14347be8daee4a.tar.gz
zig-2b9478ce12a5556a9ef596d98a14347be8daee4a.zip
Sema: implement AVR address spaces
Co-authored-by: Veikka Tuominen <git@vexu.eu>
Diffstat (limited to 'src/codegen/spirv.zig')
-rw-r--r--src/codegen/spirv.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig
index 4db3b34b1e..e1af8c847f 100644
--- a/src/codegen/spirv.zig
+++ b/src/codegen/spirv.zig
@@ -548,7 +548,7 @@ pub const DeclGen = struct {
.gs, .fs, .ss => unreachable,
.shared => .Workgroup,
.local => .Private,
- .global, .param, .constant => unreachable,
+ .global, .param, .constant, .flash, .flash1, .flash2, .flash3, .flash4, .flash5 => unreachable,
};
}