diff options
author | 2013-03-04 10:48:41 -0800 | |
---|---|---|
committer | 2013-03-04 11:54:04 -0800 | |
commit | 1212a022fa5f8ef9585d765b1809521812af882c (patch) | |
tree | 67ebdc1d3274c78978b3d06630874d7641d858d1 /src/compiler/dex/dataflow.cc | |
parent | 8e6960569e9de6350d7da89aa02efe0e4b924d6f (diff) |
Move the Compiler to CompilerDriver.
Change-Id: I0bb4d3c2b79b45fd8ef180688c767712b0c55978
Diffstat (limited to 'src/compiler/dex/dataflow.cc')
-rw-r--r-- | src/compiler/dex/dataflow.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/dex/dataflow.cc b/src/compiler/dex/dataflow.cc index 2ce16a4aa0..0fa9ab1bef 100644 --- a/src/compiler/dex/dataflow.cc +++ b/src/compiler/dex/dataflow.cc @@ -2501,9 +2501,9 @@ static bool InvokeUsesMethodStar(CompilationUnit* cu, MIR* mir) uintptr_t direct_code; uintptr_t direct_method; bool fast_path = - cu->compiler->ComputeInvokeInfo(dex_method_idx, &m_unit, type, - vtable_idx, direct_code, - direct_method) && + cu->compiler_driver->ComputeInvokeInfo(dex_method_idx, &m_unit, type, + vtable_idx, direct_code, + direct_method) && !SLOW_INVOKE_PATH; return (((type == kDirect) || (type == kStatic)) && fast_path && ((direct_code == 0) || (direct_method == 0))); |