summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-03-09 20:56:53 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-03-09 20:56:54 +0000
commit74f94dd8edb4a6070f6f7bfef6d28a8b4a21fc30 (patch)
tree6f364e43c51685a0106b4b5717c42eb2dbc3699d /compiler/driver/compiler_driver.cc
parentcac55a12d455efeeb928b6c5629dae4636249e56 (diff)
parent97fa9928c07d3e0ee631235e9619fb0f8949ed7a (diff)
Merge "Do not allow input-vdex with dexlayout."
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
-rw-r--r--compiler/driver/compiler_driver.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index 057e3c9960..995098799c 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -480,7 +480,9 @@ static void Unquicken(const std::vector<const DexFile*>& dex_files,
DCHECK(!it.HasNext());
}
}
- DCHECK_EQ(quickening_info_ptr, quickening_info_end) << "Failed to use all quickening info";
+ if (quickening_info_ptr != quickening_info_end) {
+ LOG(FATAL) << "Failed to use all quickening info";
+ }
}
void CompilerDriver::CompileAll(jobject class_loader,