aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/reduce.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-08 13:39:09 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:08 -0800
commitf53248a40936ebc9aaf75ddbd16e67ebec05ab84 (patch)
treeaf6a1a4fa4d3ff09dae241922a8f7c37cde43681 /lib/compiler/reduce.zig
parent916998315967f73c91e682e9ea05dd3232818654 (diff)
downloadzig-f53248a40936ebc9aaf75ddbd16e67ebec05ab84.tar.gz
zig-f53248a40936ebc9aaf75ddbd16e67ebec05ab84.zip
update all std.fs.cwd() to std.Io.Dir.cwd()
Diffstat (limited to 'lib/compiler/reduce.zig')
-rw-r--r--lib/compiler/reduce.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compiler/reduce.zig b/lib/compiler/reduce.zig
index bbd3d172b4..d3f33ad81a 100644
--- a/lib/compiler/reduce.zig
+++ b/lib/compiler/reduce.zig
@@ -233,7 +233,7 @@ pub fn main() !void {
}
}
- try std.fs.cwd().writeFile(.{ .sub_path = root_source_file_path, .data = rendered.written() });
+ try Io.Dir.cwd().writeFile(.{ .sub_path = root_source_file_path, .data = rendered.written() });
// std.debug.print("trying this code:\n{s}\n", .{rendered.items});
const interestingness = try runCheck(arena, interestingness_argv.items);
@@ -274,7 +274,7 @@ pub fn main() !void {
fixups.clearRetainingCapacity();
rendered.clearRetainingCapacity();
try tree.render(gpa, &rendered.writer, fixups);
- try std.fs.cwd().writeFile(.{ .sub_path = root_source_file_path, .data = rendered.written() });
+ try Io.Dir.cwd().writeFile(.{ .sub_path = root_source_file_path, .data = rendered.written() });
return std.process.cleanExit();
}
@@ -398,7 +398,7 @@ fn transformationsToFixups(
}
fn parse(gpa: Allocator, file_path: []const u8) !Ast {
- const source_code = std.fs.cwd().readFileAllocOptions(
+ const source_code = Io.Dir.cwd().readFileAllocOptions(
file_path,
gpa,
.limited(std.math.maxInt(u32)),