aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-02-05 23:32:22 -0800
committerGitHub <noreply@github.com>2024-02-05 23:32:22 -0800
commit648b492ef1d962cabd7d2f017ef47aef73c0c3aa (patch)
tree844d80b99d08bc7f9c3b5ff8902fbb15a587b6cc /src/codegen
parent5cf138e512a06dca65b737f27e4493cdfb3b7ddb (diff)
parentdd54804d8623a6d022dcac63359636b990b926f9 (diff)
downloadzig-648b492ef1d962cabd7d2f017ef47aef73c0c3aa.tar.gz
zig-648b492ef1d962cabd7d2f017ef47aef73c0c3aa.zip
Merge pull request #18831 from ziglang/flatten-value
flatten value.zig into Value.zig (refactor only)
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/c.zig2
-rw-r--r--src/codegen/llvm.zig2
-rw-r--r--src/codegen/spirv.zig2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index 9907a95fef..68e69e9caf 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -7,7 +7,7 @@ const log = std.log.scoped(.c);
const link = @import("../link.zig");
const Module = @import("../Module.zig");
const Compilation = @import("../Compilation.zig");
-const Value = @import("../value.zig").Value;
+const Value = @import("../Value.zig");
const Type = @import("../type.zig").Type;
const TypedValue = @import("../TypedValue.zig");
const C = link.File.C;
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
index a703b90013..504c9ae1d1 100644
--- a/src/codegen/llvm.zig
+++ b/src/codegen/llvm.zig
@@ -21,7 +21,7 @@ const Package = @import("../Package.zig");
const TypedValue = @import("../TypedValue.zig");
const Air = @import("../Air.zig");
const Liveness = @import("../Liveness.zig");
-const Value = @import("../value.zig").Value;
+const Value = @import("../Value.zig");
const Type = @import("../type.zig").Type;
const LazySrcLoc = Module.LazySrcLoc;
const x86_64_abi = @import("../arch/x86_64/abi.zig");
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");