[libc-commits] [libc] [libc] Set Root PAS in AArch64 baremetal page tables (PR #217857)
via libc-commits
libc-commits at lists.llvm.org
Fri Aug 21 02:23:02 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r origin/main...HEAD libc/startup/baremetal/aarch64/check-root-pas.py
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- check-root-pas.py 2026-08-21 09:18:12.000000 +0000
+++ check-root-pas.py 2026-08-21 09:22:30.371879 +0000
@@ -85,13 +85,11 @@
parser.add_argument("--objdump", required=True)
parser.add_argument("object")
args = parser.parse_args(argv[1:])
try:
- disassembly = run(
- [args.objdump, "-d", "--no-show-raw-insn", args.object]
- )
+ disassembly = run([args.objdump, "-d", "--no-show-raw-insn", args.object])
return check_disassembly(extract_setup_mmu(disassembly))
except (subprocess.CalledProcessError, ValueError) as err:
return error(str(err))
``````````
</details>
https://github.com/llvm/llvm-project/pull/217857
More information about the libc-commits
mailing list