Merge "Change LibartImgDeviceBaseAddress to 0x60000000"

This commit is contained in:
Mathieu Chartier 2018-09-14 19:35:45 +00:00 committed by Gerrit Code Review
commit 1278a6ce77
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 {