diff options
| author | 2014-04-29 21:57:01 +0000 | |
|---|---|---|
| committer | 2014-04-29 21:57:05 +0000 | |
| commit | be4706907e226959623c0fb4937cf3979f440a97 (patch) | |
| tree | f66a685756dd3242f4118279e7636010f84b5c16 /compiler/compiler.h | |
| parent | c5d59464e1b97c3008b0c4e0c8114ea132c3f65f (diff) | |
| parent | b0fa5dc7769c1e054032f39de0a3f6d6dd06f8cf (diff) | |
Merge "Force inlining on trivial accessors."
Diffstat (limited to 'compiler/compiler.h')
| -rw-r--r-- | compiler/compiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h index 1d5fc24e9f..2357297b1d 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -74,7 +74,8 @@ class Compiler { uint32_t method_idx, const DexFile& dex_file) const = 0; - virtual uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const = 0; + virtual uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const + SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; virtual bool WriteElf(art::File* file, OatWriter* oat_writer, |