diff options
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/android/config.go b/android/config.go index 9b1297cd8..bbbe3c8ca 100644 --- a/android/config.go +++ b/android/config.go @@ -863,16 +863,7 @@ func (c *config) LibartImgHostBaseAddress() string { } func (c *config) LibartImgDeviceBaseAddress() string { - archType := Common - if len(c.Targets[Android]) > 0 { - archType = c.Targets[Android][0].Arch.ArchType - } - switch archType { - default: - return "0x70000000" - case Mips, Mips64: - return "0x5C000000" - } + return "0x70000000" } func (c *config) ArtUseReadBarrier() bool { |