RE: [PATCH v2] AArch64: Add LUTI ACLE for SVE2

2024-07-24 Thread Vladimir Miloserdov
where, do we need to add it? >I guess I don’t mind it for future use, but just checking that it was >deliberate. It is deliberate - I thought it may be useful to have for future use. BR, - Vladimir Miloserdov

RE: [PATCH][contrib]: support json output from check_GNU_style_lib.py

2024-07-24 Thread Vladimir Miloserdov
> else: > assert False Might be a good idea to rename "fn" -> "get_err", "i" -> "error_type_counter", "k" -> "error_message", "errors" -> "grouped_errors" to make it easier to understand. You can also simplify "entry" construction like this: entry = { 'type': error_type_counter, 'msg': error_message, 'count': len(grouped_errors) } BR, - Vladimir Miloserdov