mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
fix regression: debug safety sometimes incorrectly disabled
This commit is contained in:
parent
b581da41f8
commit
0562111b02
@ -356,7 +356,7 @@ static bool want_debug_safety_recursive(CodeGen *g, BlockContext *context) {
|
||||
if (context->safety_set_node || !context->parent) {
|
||||
return !context->safety_off;
|
||||
}
|
||||
context->safety_off = want_debug_safety_recursive(g, context->parent);
|
||||
context->safety_off = !want_debug_safety_recursive(g, context->parent);
|
||||
context->safety_set_node = context->parent->safety_set_node;
|
||||
return !context->safety_off;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user