diff --git a/src/codegen/spirv/TypeConstantCache.zig b/src/codegen/spirv/Cache.zig similarity index 100% rename from src/codegen/spirv/TypeConstantCache.zig rename to src/codegen/spirv/Cache.zig diff --git a/src/codegen/spirv/Module.zig b/src/codegen/spirv/Module.zig index 4c078f301b..a9a2571ff0 100644 --- a/src/codegen/spirv/Module.zig +++ b/src/codegen/spirv/Module.zig @@ -21,7 +21,7 @@ const IdResultType = spec.IdResultType; const Section = @import("Section.zig"); -const Cache = @import("TypeConstantCache.zig"); +const Cache = @import("Cache.zig"); pub const CacheKey = Cache.Key; pub const CacheRef = Cache.Ref; pub const CacheString = Cache.String;