From 78f15bc7147da4407f1b896ad76f4c19851bd7b9 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 5 Feb 2024 18:13:07 -0700 Subject: compiler: rename value.zig to Value.zig This commit only does the file rename to be friendlier to version control conflicts. --- src/codegen/llvm.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codegen/llvm.zig') 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"); -- cgit v1.2.3