Commit 8e492f7d47

Andrew Kelley <andrew@ziglang.org>
2022-07-08 05:47:43
compiler_rt: enable __clear_cache for stage2
1 parent 6a3a0fe
Changed files (1)
lib
compiler_rt
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 {