summaryrefslogtreecommitdiff
path: root/compiler/dex/quick_compiler_callbacks.h
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-03-28 04:44:36 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-28 04:44:37 +0000
commit86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672 (patch)
tree6de43fc1c1336d18a72f5c205e142e1c6ca1ef5e /compiler/dex/quick_compiler_callbacks.h
parent5c7acfc0b5acc50c60c57934341750f7c776d57e (diff)
parent81c6f8db12b203878a7d72444ead2bc7cf5c47ad (diff)
Merge "ART: PathClassLoader for compiler"
Diffstat (limited to 'compiler/dex/quick_compiler_callbacks.h')
-rw-r--r--compiler/dex/quick_compiler_callbacks.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/dex/quick_compiler_callbacks.h b/compiler/dex/quick_compiler_callbacks.h
index cdf71b642e..56706e3e35 100644
--- a/compiler/dex/quick_compiler_callbacks.h
+++ b/compiler/dex/quick_compiler_callbacks.h
@@ -27,8 +27,9 @@ class DexFileToMethodInlinerMap;
class QuickCompilerCallbacks FINAL : public CompilerCallbacks {
public:
QuickCompilerCallbacks(VerificationResults* verification_results,
- DexFileToMethodInlinerMap* method_inliner_map)
- : verification_results_(verification_results),
+ DexFileToMethodInlinerMap* method_inliner_map,
+ bool boot_image)
+ : CompilerCallbacks(boot_image), verification_results_(verification_results),
method_inliner_map_(method_inliner_map) {
CHECK(verification_results != nullptr);
CHECK(method_inliner_map != nullptr);