aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-05-31 11:32:29 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-31 11:32:31 +0000
commitd55aa7bdadda377d0fc1ffc8631ad8c913dd984f (patch)
tree615d80aafb5cfb2e19d5ee87fda6c3da46f3a1af
parent977fd8f1fa60ea51f280962e3074d6999ff38c0b (diff)
parentae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4 (diff)
downloadbuild_soong-d55aa7bdadda377d0fc1ffc8631ad8c913dd984f.tar.gz
build_soong-d55aa7bdadda377d0fc1ffc8631ad8c913dd984f.tar.bz2
build_soong-d55aa7bdadda377d0fc1ffc8631ad8c913dd984f.zip
Merge "MIPS: Lower LibartImgDeviceBaseAddress() to fix ART tests."
-rw-r--r--android/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/config.go b/android/config.go
index b83ffd4a..869a5c43 100644
--- a/android/config.go
+++ b/android/config.go
@@ -466,7 +466,7 @@ func (c *config) LibartImgDeviceBaseAddress() string {
default:
return "0x70000000"
case Mips, Mips64:
- return "0x64000000"
+ return "0x5C000000"
}
}