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 c82ebfb commit dddd0c2Copy full SHA for dddd0c2
lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1275,9 +1275,8 @@ def isAArch64SMEFA64(self):
1275
# smefa64 allows the use of the full A64 instruction set in streaming
1276
# mode. This is required by certain test programs to setup register
1277
# state.
1278
- return self.isAArch64SME() and set(["sme", "smefa64"]).issuperset(
1279
- set(self.getCPUInfo())
1280
- )
+ cpuinfo = self.getCPUInfo()
+ return self.isAArch64() and "sme" in cpuinfo and "smefa64" in cpuinfo
1281
1282
def isAArch64MTE(self):
1283
return self.isAArch64() and "mte" in self.getCPUInfo()
0 commit comments