summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2016-06-01 11:23:53 +0100
committer Nicolas Geoffray <ngeoffray@google.com> 2016-06-01 11:23:53 +0100
commit279ee76a8a972741d423f8f340939fb272bb8f0c (patch)
tree41da202b904eec7388f94582f19ff2a52bf8d756
parent1d5287ccb5eade2fcb94e75676d422c498b26139 (diff)
Make the boot image non-debuggable.
We now support partial fragment deoptimization. bug:28769520 Change-Id: Ib730f62b6c03882d5e7ae4ce74645eeb7d906ff6
-rw-r--r--dex2oat/dex2oat.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index cce83f32b5..db267992ce 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -685,12 +685,6 @@ class Dex2Oat FINAL {
Usage("Can't have both --image and (--app-image-fd or --app-image-file)");
}
- if (IsBootImage()) {
- // We need the boot image to always be debuggable.
- // TODO: Remove this once we better deal with full frame deoptimization.
- compiler_options_->debuggable_ = true;
- }
-
if (oat_filenames_.empty() && oat_fd_ == -1) {
Usage("Output must be supplied with either --oat-file or --oat-fd");
}