Change LibartImgDeviceBaseAddress to 0x60000000

Lower it to have more space to allocate the region space after.

Test: make
Bug: 112670831
Change-Id: I336fe25466711d93481f30e69141449d3cfbf7e2
This commit is contained in:
Mathieu Chartier 2018-09-07 13:50:01 -07:00
parent 2f7e3bb4d0
commit 0c7bb7f31b
1 changed files with 1 additions and 10 deletions

View File

@ -660,16 +660,7 @@ func (c *config) LibartImgHostBaseAddress() string {
}
func (c *config) LibartImgDeviceBaseAddress() string {
archType := Common
if len(c.Targets[Device]) > 0 {
archType = c.Targets[Device][0].Arch.ArchType
}
switch archType {
default:
return "0x70000000"
case Mips, Mips64:
return "0x5C000000"
}
return "0x60000000"
}
func (c *config) ArtUseReadBarrier() bool {