commit | cc238e2645760604da1b2347b9bc9fd59a395780 | [log] [tgz] |
---|---|---|
author | Mathieu Chartier <mathieuc@google.com> | Tue Nov 29 15:31:00 2016 -0800 |
committer | Mathieu Chartier <mathieuc@google.com> | Tue Nov 29 15:33:03 2016 -0800 |
tree | 4bb4e11d0d805e0468ee2560942a8b4fe46c760c | |
parent | f9c2f88d13337436d7f345564b765c2dfd5f80a5 [diff] |
Fix mips build in InitEntryPoints Added missing arg. Test: Untested Change-Id: I7bd25203eee92d0424f03ee9fdb9e7079d05d23c
diff --git a/runtime/arch/mips/entrypoints_init_mips.cc b/runtime/arch/mips/entrypoints_init_mips.cc index 6a442a5..5c56923 100644 --- a/runtime/arch/mips/entrypoints_init_mips.cc +++ b/runtime/arch/mips/entrypoints_init_mips.cc
@@ -71,7 +71,7 @@ jpoints->pDlsymLookup = art_jni_dlsym_lookup_stub; // Alloc - ResetQuickAllocEntryPoints(qpoints); + ResetQuickAllocEntryPoints(qpoints, /*is_marking*/ false); // Cast qpoints->pInstanceofNonTrivial = artInstanceOfFromCode;