Skip to content

Commit a1a4f38

Browse files
committed
[LLDB][test] Fix formatting
1 parent dd5f0b8 commit a1a4f38

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lldb/packages/Python/lldbsuite/test/lldbtest.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,11 @@ def isAArch64SMEFA64(self):
13471347
# smefa64 allows the use of the full A64 instruction set in streaming
13481348
# mode. This is required by certain test programs to setup register
13491349
# state.
1350-
return self.isAArch64() and self.isSupported(cpu_feature.SME) and self.isSupported(cpu_feature.SME_FA64)
1350+
return (
1351+
self.isAArch64()
1352+
and self.isSupported(cpu_feature.SME)
1353+
and self.isSupported(cpu_feature.SME_FA64)
1354+
)
13511355

13521356
def isAArch64MTE(self):
13531357
return self.isAArch64() and self.isSupported(cpu_feature.MTE)

0 commit comments

Comments
 (0)