We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5f0b8 commit a1a4f38Copy full SHA for a1a4f38
lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1347,7 +1347,11 @@ def isAArch64SMEFA64(self):
1347
# smefa64 allows the use of the full A64 instruction set in streaming
1348
# mode. This is required by certain test programs to setup register
1349
# state.
1350
- return self.isAArch64() and self.isSupported(cpu_feature.SME) and self.isSupported(cpu_feature.SME_FA64)
+ return (
1351
+ self.isAArch64()
1352
+ and self.isSupported(cpu_feature.SME)
1353
+ and self.isSupported(cpu_feature.SME_FA64)
1354
+ )
1355
1356
def isAArch64MTE(self):
1357
return self.isAArch64() and self.isSupported(cpu_feature.MTE)
0 commit comments