diff options
| author | Ali Cheraghi <alichraghi@proton.me> | 2025-05-06 16:25:08 +0330 |
|---|---|---|
| committer | Ali Cheraghi <alichraghi@proton.me> | 2025-05-21 12:57:40 +0330 |
| commit | fca5f3602d697bd3de6a36d4504703693133144c (patch) | |
| tree | 83135229630e0fb4e22b8d4e648ef6e668a965e3 /src/codegen/spirv/Module.zig | |
| parent | f925e1379aa53228610df9b7ffc3d87dbcce0dbb (diff) | |
| download | zig-fca5f3602d697bd3de6a36d4504703693133144c.tar.gz zig-fca5f3602d697bd3de6a36d4504703693133144c.zip | |
spirv: unroll all vector operations
Diffstat (limited to 'src/codegen/spirv/Module.zig')
| -rw-r--r-- | src/codegen/spirv/Module.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen/spirv/Module.zig b/src/codegen/spirv/Module.zig index 1aa082f6bc..8f69276e1e 100644 --- a/src/codegen/spirv/Module.zig +++ b/src/codegen/spirv/Module.zig @@ -164,8 +164,6 @@ cache: struct { void_type: ?IdRef = null, int_types: std.AutoHashMapUnmanaged(std.builtin.Type.Int, IdRef) = .empty, float_types: std.AutoHashMapUnmanaged(std.builtin.Type.Float, IdRef) = .empty, - // This cache is required so that @Vector(X, u1) in direct representation has the - // same ID as @Vector(X, bool) in indirect representation. vector_types: std.AutoHashMapUnmanaged(struct { IdRef, u32 }, IdRef) = .empty, array_types: std.AutoHashMapUnmanaged(struct { IdRef, IdRef }, IdRef) = .empty, |
