diff options
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r-- | runtime/runtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index f3fcd34de9..8ea31a1a76 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -2008,7 +2008,7 @@ bool Runtime::IsVerificationSoftFail() const { } bool Runtime::IsDeoptimizeable(uintptr_t code) const - SHARED_REQUIRES(Locks::mutator_lock_) { + REQUIRES_SHARED(Locks::mutator_lock_) { return !heap_->IsInBootImageOatFile(reinterpret_cast<void *>(code)); } |