aboutsummaryrefslogtreecommitdiff
path: root/src/InternPool.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-09-25 14:18:49 -0700
committerGitHub <noreply@github.com>2025-09-25 14:18:49 -0700
commit2a88a6a456bebcf6c28d7110a5cd60213f43508e (patch)
tree05c944a0fb7837d2db65aacee07abea80b4a2e24 /src/InternPool.zig
parenta73f246b2963de0024b9b7070448862e855d5a04 (diff)
parent5f763b7dc581d1f9078edbb668a48af40283a120 (diff)
downloadzig-2a88a6a456bebcf6c28d7110a5cd60213f43508e.tar.gz
zig-2a88a6a456bebcf6c28d7110a5cd60213f43508e.zip
Merge pull request #24497 from ziglang/aro-translate-c
compiler: update aro and translate-c to latest; delete clang translate-c
Diffstat (limited to 'src/InternPool.zig')
-rw-r--r--src/InternPool.zig5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig
index f4344af86d..e19fc075ee 100644
--- a/src/InternPool.zig
+++ b/src/InternPool.zig
@@ -6925,10 +6925,7 @@ pub fn deactivate(ip: *const InternPool) void {
/// For debugger access only.
const debug_state = struct {
- const enable = switch (builtin.zig_backend) {
- else => false,
- .stage2_x86_64 => !builtin.strip_debug_info,
- };
+ const enable = false;
const enable_checks = enable and !builtin.single_threaded;
threadlocal var intern_pool: ?*const InternPool = null;
};