diff options
Diffstat (limited to 'src/compiler_llvm/compiler_llvm.h')
| -rw-r--r-- | src/compiler_llvm/compiler_llvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler_llvm/compiler_llvm.h b/src/compiler_llvm/compiler_llvm.h index dabd7be45b..e9ccd4d3ae 100644 --- a/src/compiler_llvm/compiler_llvm.h +++ b/src/compiler_llvm/compiler_llvm.h @@ -98,8 +98,8 @@ class CompilerLLVM { InstructionSet insn_set_; - Mutex num_cunits_lock_; - size_t num_cunits_; + Mutex num_cunits_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER; + size_t num_cunits_ GUARDED_BY(num_cunits_lock_); std::string bitcode_filename_; |