diff options
author | 2015-07-30 16:39:45 -0700 | |
---|---|---|
committer | 2015-07-31 16:03:00 -0700 | |
commit | bc1d78daa463572c5a770cdca858a3b51d8e1b7b (patch) | |
tree | d33ae78ec8b5e1f9e4b088545e346306d3c4f04e /runtime/art_method.cc | |
parent | 8e568d079b052db118d83e6e89ea36ab4fa4bfb1 (diff) |
runtime: cleanup class_linker out-parameters and formatting
* Use out<T> instead of parameters
* Fixes up some other signatures to be more correct
* Reformat parameters to be one per line if they can't fit on one line
* Reformat locks to be one per line if they can't fit on the decl line
Change-Id: Ib71b08707d3ed0bb85299406c0b23a1de4e92a1c
Diffstat (limited to 'runtime/art_method.cc')
-rw-r--r-- | runtime/art_method.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/art_method.cc b/runtime/art_method.cc index 17c9fe4149..f37e0407ca 100644 --- a/runtime/art_method.cc +++ b/runtime/art_method.cc @@ -19,6 +19,7 @@ #include "arch/context.h" #include "art_field-inl.h" #include "art_method-inl.h" +#include "base/out.h" #include "base/stringpiece.h" #include "dex_file-inl.h" #include "dex_instruction.h" @@ -565,7 +566,7 @@ bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> param const uint8_t* ArtMethod::GetQuickenedInfo() { bool found = false; OatFile::OatMethod oat_method = - Runtime::Current()->GetClassLinker()->FindOatMethodFor(this, &found); + Runtime::Current()->GetClassLinker()->FindOatMethodFor(this, outof(found)); if (!found || (oat_method.GetQuickCode() != nullptr)) { return nullptr; } |