zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 8e492f7d475e3ec7c022976f6bfd1e46d55b79d2 (tree)
parent 6a3a0fe7ae20e620ec6ad80bf87c72b284d2aafa
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Thu,  7 Jul 2022 20:47:43 -0700

compiler_rt: enable __clear_cache for stage2

Diffstat:
Mlib/compiler_rt/clear_cache.zig | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lib/compiler_rt/clear_cache.zig b/lib/compiler_rt/clear_cache.zig @@ -12,9 +12,7 @@ pub const panic = @import("common.zig").panic; // specified range. comptime { - if (builtin.zig_backend != .stage2_llvm) { - _ = clear_cache; - } + _ = clear_cache; } fn clear_cache(start: usize, end: usize) callconv(.C) void {