diff options
Diffstat (limited to 'runtime/jit/jit.cc')
-rw-r--r-- | runtime/jit/jit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/jit.cc b/runtime/jit/jit.cc index 72b5a942fe..953e195480 100644 --- a/runtime/jit/jit.cc +++ b/runtime/jit/jit.cc @@ -52,7 +52,7 @@ static constexpr size_t kJitStressDefaultCompileThreshold = 100; // Fast- static constexpr size_t kJitSlowStressDefaultCompileThreshold = 2; // Slow-debug build. // JIT compiler -void* Jit::jit_library_handle_= nullptr; +void* Jit::jit_library_handle_ = nullptr; void* Jit::jit_compiler_handle_ = nullptr; void* (*Jit::jit_load_)(bool*) = nullptr; void (*Jit::jit_unload_)(void*) = nullptr; |