diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-05 18:13:07 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-02-05 18:13:07 -0700 |
| commit | 78f15bc7147da4407f1b896ad76f4c19851bd7b9 (patch) | |
| tree | d91dad60e70a3a55b635291292c2e7110aaf0ae1 /src/codegen/spirv.zig | |
| parent | 2de5e31721e2dc952219d08a417d7dc57efb3cba (diff) | |
| download | zig-78f15bc7147da4407f1b896ad76f4c19851bd7b9.tar.gz zig-78f15bc7147da4407f1b896ad76f4c19851bd7b9.zip | |
compiler: rename value.zig to Value.zig
This commit only does the file rename to be friendlier to version
control conflicts.
Diffstat (limited to 'src/codegen/spirv.zig')
| -rw-r--r-- | src/codegen/spirv.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig index 8bcc907436..e1558e7f79 100644 --- a/src/codegen/spirv.zig +++ b/src/codegen/spirv.zig @@ -7,7 +7,7 @@ const assert = std.debug.assert; const Module = @import("../Module.zig"); const Decl = Module.Decl; const Type = @import("../type.zig").Type; -const Value = @import("../value.zig").Value; +const Value = @import("../Value.zig"); const LazySrcLoc = Module.LazySrcLoc; const Air = @import("../Air.zig"); const Zir = @import("../Zir.zig"); |
