ART: SHARED_REQUIRES to REQUIRES_SHARED
This coincides with the actual attribute name and upstream usage.
Preparation for deferring to libbase.
Test: m
Test: m test-art-host
Change-Id: Ia8986b5dfd926ba772bf00b0a35eaf83596d8518
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index f3fcd34..8ea31a1 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -2008,7 +2008,7 @@
}
bool Runtime::IsDeoptimizeable(uintptr_t code) const
- SHARED_REQUIRES(Locks::mutator_lock_) {
+ REQUIRES_SHARED(Locks::mutator_lock_) {
return !heap_->IsInBootImageOatFile(reinterpret_cast<void *>(code));
}