diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-16 18:05:58 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-16 18:05:58 +0000 |
| commit | 65c0255e7ef82fe45fbc5e55a2c642e96b81343a (patch) | |
| tree | 2d7f332022f6c4211e686ebdc656a623edc679ea /src/llvm_backend_debug.cpp | |
| parent | b289a27c4eb26f0e2984c0cbb1a9a7e07cc40325 (diff) | |
Replace `RecursiveMutex` with a `BlockingMutex`
Diffstat (limited to 'src/llvm_backend_debug.cpp')
| -rw-r--r-- | src/llvm_backend_debug.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/llvm_backend_debug.cpp b/src/llvm_backend_debug.cpp index 83f6da04e..fc9e63274 100644 --- a/src/llvm_backend_debug.cpp +++ b/src/llvm_backend_debug.cpp @@ -495,15 +495,14 @@ gb_internal LLVMMetadataRef lb_get_base_scope_metadata(lbModule *m, Scope *scope } gb_internal LLVMMetadataRef lb_debug_type(lbModule *m, Type *type) { - mutex_lock(&m->debug_values_mutex); - defer (mutex_unlock(&m->debug_values_mutex)); - GB_ASSERT(type != nullptr); LLVMMetadataRef found = lb_get_llvm_metadata(m, type); if (found != nullptr) { return found; } + MUTEX_GUARD(&m->debug_values_mutex); + if (type->kind == Type_Named) { LLVMMetadataRef file = nullptr; unsigned line = 0; |