diff options
author | 2013-05-13 11:28:27 -0700 | |
---|---|---|
committer | 2013-05-13 13:14:19 -0700 | |
commit | aa4a793d7175ceeb1efa215c2af5e52e42b22f0a (patch) | |
tree | 9c3db54a108d4327471c6d4890d28cdfe1f030ff /src/compiler/driver/compiler_driver.cc | |
parent | 167436311a08a65dea28dda079a137893821c9c7 (diff) |
Rename abstract method code_ to entry_point_from_compiled_code_.
Change-Id: I9b02d2df95bbeafa6e6387b461f574c57337a61e
Diffstat (limited to 'src/compiler/driver/compiler_driver.cc')
-rw-r--r-- | src/compiler/driver/compiler_driver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/driver/compiler_driver.cc b/src/compiler/driver/compiler_driver.cc index 6b7d9e6390..698517277f 100644 --- a/src/compiler/driver/compiler_driver.cc +++ b/src/compiler/driver/compiler_driver.cc @@ -809,7 +809,7 @@ void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType type, InvokeType s if (Runtime::Current()->GetHeap()->FindSpaceFromObject(method)->IsImageSpace()) { direct_method = reinterpret_cast<uintptr_t>(method); } - direct_code = reinterpret_cast<uintptr_t>(method->GetCode()); + direct_code = reinterpret_cast<uintptr_t>(method->GetEntryPointFromCompiledCode()); } } |