summaryrefslogtreecommitdiffstats
path: root/dex2oat
diff options
context:
space:
mode:
authorDouglas Leung <douglas.leung@imgtec.com>2015-07-02 16:42:08 -0700
committerRoland Levillain <rpl@google.com>2015-07-03 17:29:27 +0100
commitccbbda2b716bcc0dd9ad7b6c7bf9079efa3fca23 (patch)
tree52b01bc48dadce390c2e4ceffacdc16f674d3dd0 /dex2oat
parent3abd437507f8ba30a238a52c273c9944dcb9d5a1 (diff)
downloadart-ccbbda2b716bcc0dd9ad7b6c7bf9079efa3fca23.zip
art-ccbbda2b716bcc0dd9ad7b6c7bf9079efa3fca23.tar.gz
art-ccbbda2b716bcc0dd9ad7b6c7bf9079efa3fca23.tar.bz2
Add implicit null pointer and stack overflow checks for Mips.
(cherry picked from commit 22bb5a2ebc1e2724179faf4660b2735dcb185f21) Bug: 21555893 Change-Id: I2a995be128a5603d08753c14956dd8c8240ac63c
Diffstat (limited to 'dex2oat')
-rw-r--r--dex2oat/dex2oat.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index 74d5c0c..d21f5cb 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -975,6 +975,8 @@ class Dex2Oat FINAL {
case kArm64:
case kX86:
case kX86_64:
+ case kMips:
+ case kMips64:
implicit_null_checks = true;
implicit_so_checks = true;
break;