[LLDB][test] Fix formatting

This commit is contained in:
Julian Lettner 2025-08-15 19:48:10 -07:00
parent dd5f0b829f
commit a1a4f3847c
Failed to extract signature

View File

@ -1347,7 +1347,11 @@ class Base(unittest.TestCase):
# smefa64 allows the use of the full A64 instruction set in streaming
# mode. This is required by certain test programs to setup register
# state.
return self.isAArch64() and self.isSupported(cpu_feature.SME) and self.isSupported(cpu_feature.SME_FA64)
return (
self.isAArch64()
and self.isSupported(cpu_feature.SME)
and self.isSupported(cpu_feature.SME_FA64)
)
def isAArch64MTE(self):
return self.isAArch64() and self.isSupported(cpu_feature.MTE)