[llvm] [UTC] Add support for Xtensa (PR #117441)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 23 08:31:15 PST 2024
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 aa5dc539e91824cbc224214e69d62d46db21af6e...6364645cbd7e9bce2f1edc34f5e072e29804c843 llvm/utils/UpdateTestChecks/asm.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- asm.py 2024-11-23 16:25:07.000000 +0000
+++ asm.py 2024-11-23 16:29:53.874992 +0000
@@ -221,13 +221,11 @@
r".Lfunc_end[0-9]+:\n",
flags=(re.M | re.S),
)
ASM_FUNCTION_XTENSA_RE = re.compile(
- r"^(?P<func>[^:]+): +# @(?P=func)\n"
- r"(?P<body>.*?)\n"
- r"\.Lfunc_end\d+:\n",
+ r"^(?P<func>[^:]+): +# @(?P=func)\n" r"(?P<body>.*?)\n" r"\.Lfunc_end\d+:\n",
flags=(re.M | re.S),
)
ASM_FUNCTION_CSKY_RE = re.compile(
r"^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n(?:\s*\.?Lfunc_begin[^:\n]*:\n)?[^:]*?"
``````````
</details>
https://github.com/llvm/llvm-project/pull/117441
More information about the llvm-commits
mailing list