[clang] [compiler-rt] Realtime Sanitizer: Introduce RADSan backend (PR #92460)

via llvm-commits llvm-commits at lists.llvm.org
Thu May 16 14:38:04 PDT 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 7115ed0fff027b65fa76fdfae215ed1382ed1473...3f28f74af90ee4c0d9fe2d9fdb1d91ba62c1441f compiler-rt/test/radsan/lit.cfg.py compiler-rt/test/sanitizer_common/lit.common.cfg.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- radsan/lit.cfg.py	2024-05-07 19:24:59.000000 +0000
+++ radsan/lit.cfg.py	2024-05-16 21:37:34.315979 +0000
@@ -38,11 +38,13 @@
 config.substitutions.append(("%clang ", build_invocation([config.target_cflags])))
 config.substitutions.append(
     ("%clangxx ", build_invocation(config.cxx_mode_flags + [config.target_cflags]))
 )
 config.substitutions.append(("%clang_radsan ", build_invocation(clang_radsan_cflags)))
-config.substitutions.append(("%clangxx_radsan", build_invocation(clang_radsan_cxxflags)))
+config.substitutions.append(
+    ("%clangxx_radsan", build_invocation(clang_radsan_cxxflags))
+)
 config.substitutions.append(("%llvm_radsan", llvm_radsan))
 config.substitutions.append(
     (
         "%radsanlib",
         (

``````````

</details>


https://github.com/llvm/llvm-project/pull/92460


More information about the llvm-commits mailing list