diff options
Diffstat (limited to 'src/compiler/Frontend.cc')
| -rw-r--r-- | src/compiler/Frontend.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc index c5692bc10d..2a6714f35e 100644 --- a/src/compiler/Frontend.cc +++ b/src/compiler/Frontend.cc @@ -765,6 +765,8 @@ CompiledMethod* oatCompileMethod(const Compiler& compiler, const DexFile::CodeIt cUnit->numDalvikRegisters = code_item->registers_size_; cUnit->blockMap = std::map<unsigned int, BasicBlock*>(); cUnit->blockMap.clear(); + cUnit->boundaryMap = std::map<unsigned int, LIR*>(); + cUnit->boundaryMap.clear(); bool useMatch = compilerMethodMatch.length() != 0; bool match = useMatch && (compilerFlipMatch ^ (PrettyMethod(method_idx, dex_file).find(compilerMethodMatch) != std::string::npos)); |