[lldb] Include arm64 in affected_by_radar_34562999

The same issue impacts arm64, both on-device and on Apple Silicon.
This commit is contained in:
Jonas Devlieghere 2021-08-17 18:30:48 -07:00
parent a452ca471c
commit c64d1855b9
1 changed files with 3 additions and 2 deletions

View File

@ -22,9 +22,10 @@ class ReturnValueTestCase(TestBase):
return (self.getArchitecture() in ["aarch64", "arm"] and
self.getPlatform() in ["freebsd", "linux"])
# ABIMacOSX_arm can't fetch simple values inside a structure
# ABIMacOSX_arm(64) can't fetch simple values inside a structure
def affected_by_radar_34562999(self):
return (self.getArchitecture() == 'armv7' or self.getArchitecture() == 'armv7k') and self.platformIsDarwin()
arch = self.getArchitecture().lower()
return arch in ['arm64', 'arm64e', 'armv7', 'armv7k'] and self.platformIsDarwin()
@expectedFailureAll(oslist=["freebsd"], archs=["i386"],
bugnumber="llvm.org/pr48376")