summaryrefslogtreecommitdiffstats
path: root/Python/jit.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/jit.c')
-rw-r--r--Python/jit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/jit.c b/Python/jit.c
index 234fc7d..963bde2 100644
--- a/Python/jit.c
+++ b/Python/jit.c
@@ -469,7 +469,7 @@ _PyJIT_Compile(_PyExecutorObject *executor, const _PyUOpInstruction trace[], siz
// Loop once to find the total compiled size:
size_t code_size = 0;
size_t data_size = 0;
- jit_state state = {};
+ jit_state state = {0};
group = &trampoline;
code_size += group->code_size;
data_size += group->data_size;