authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-08-13 15:14:26-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-09-24 20:01:19-07:00
log9ad1e83e631a19094b4994a9cecfd24763a2684a
tree02b980d1e106166cc106c46e8e26c8c5476eb447
parentf4d328e2ac0583336085f647df18c7430b7948be

zig fmt


3 files changed, 3 insertions(+), 1 deletions(-)

lib/compiler/aro/aro/Attribute/names.zig+1
......@@ -1,4 +1,5 @@
11//! Autogenerated by GenerateDef from src/aro/Attribute/names.def, do not edit
2// zig fmt: off
23
34const std = @import("std");
45
lib/compiler/aro/aro/Builtins/Builtin.zig+1
......@@ -1,4 +1,5 @@
11//! Autogenerated by GenerateDef from src/aro/Builtins/Builtin.def, do not edit
2// zig fmt: off
23
34const std = @import("std");
45
lib/std/zig/c_translation/helpers.zig+1-1
......@@ -228,7 +228,7 @@ fn castInt(comptime DestType: type, target: anytype) DestType {
228228}
229229
230230fn castPtr(comptime DestType: type, target: anytype) DestType {
231 return @constCast(@volatileCast(@alignCast(@ptrCast(target))));
231 return @ptrCast(@alignCast(@constCast(@volatileCast(target))));
232232}
233233
234234fn castToPtr(comptime DestType: type, comptime SourceType: type, target: anytype) DestType {