From 0c41945a01a3a5254e8b4266a0677f2d8224aa1a Mon Sep 17 00:00:00 2001 From: Robin Voetter Date: Mon, 29 May 2023 23:57:36 +0200 Subject: [PATCH] spirv: rename TypeConstantCache -> Cache --- src/codegen/spirv/{TypeConstantCache.zig => Cache.zig} | 0 src/codegen/spirv/Module.zig | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/codegen/spirv/{TypeConstantCache.zig => Cache.zig} (100%) 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;