Change the logic slightly so that the feature can
be anywhere in the list.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I think we both have something like this in our changes. Yours will probably land sooner but here it is anyway.
Comment Actions
This is accepted with a caveat above.
lldb/packages/Python/lldbsuite/test/lldbtest.py | ||
---|---|---|
1288 | On AArch64 targets CPU features in cpuinfo file are written as Features while on x86 they are written as flags. So Either we change the function name to reflect it can only be used for AArch64 or keep the previous logic to make it architecture independent. |
On AArch64 targets CPU features in cpuinfo file are written as Features while on x86 they are written as flags.
So Either we change the function name to reflect it can only be used for AArch64 or keep the previous logic to make it architecture independent.