aboutsummaryrefslogtreecommitdiff
path: root/src/arch/wasm/CodeGen.zig
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/arch/wasm/CodeGen.zig
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/arch/wasm/CodeGen.zig')
-rw-r--r--src/arch/wasm/CodeGen.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/wasm/CodeGen.zig b/src/arch/wasm/CodeGen.zig
index 6237a8af23..7745523978 100644
--- a/src/arch/wasm/CodeGen.zig
+++ b/src/arch/wasm/CodeGen.zig
@@ -14,7 +14,7 @@ const Module = @import("../../Module.zig");
const InternPool = @import("../../InternPool.zig");
const Decl = Module.Decl;
const Type = @import("../../type.zig").Type;
-const Value = @import("../../value.zig").Value;
+const Value = @import("../../Value.zig");
const Compilation = @import("../../Compilation.zig");
const LazySrcLoc = Module.LazySrcLoc;
const link = @import("../../link.zig");