diff options
author | 2015-06-16 09:06:59 +0000 | |
---|---|---|
committer | 2015-06-16 09:07:00 +0000 | |
commit | e4394f7de28ae0b517daa033749979e46ff676ab (patch) | |
tree | 320596587f320a0becda91cfe4fa72c8052fb90a /compiler/jni/quick/jni_compiler.cc | |
parent | f6c77d7632bdfe564c2ba61690fecc65f10ea9f6 (diff) | |
parent | f38caa68cce551fb153dff37d01db518e58ed00f (diff) |
Merge "ART: Implement literal pool for arm, fix branch fixup."
Diffstat (limited to 'compiler/jni/quick/jni_compiler.cc')
-rw-r--r-- | compiler/jni/quick/jni_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jni/quick/jni_compiler.cc b/compiler/jni/quick/jni_compiler.cc index 4d7d86cce6..85fd6962fa 100644 --- a/compiler/jni/quick/jni_compiler.cc +++ b/compiler/jni/quick/jni_compiler.cc @@ -474,7 +474,7 @@ CompiledMethod* ArtJniCompileMethodInternal(CompilerDriver* driver, DCHECK_EQ(jni_asm->cfi().GetCurrentCFAOffset(), static_cast<int>(frame_size)); // 17. Finalize code generation - __ EmitSlowPaths(); + __ FinalizeCode(); size_t cs = __ CodeSize(); std::vector<uint8_t> managed_code(cs); MemoryRegion code(&managed_code[0], managed_code.size()); |