[flang] [llvm] [flang][device] Enable Stop functions on device build (PR #133803)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 15:32:44 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions h,cpp -- flang-rt/lib/runtime/stop.cpp flang/include/flang/Runtime/stop.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/flang-rt/lib/runtime/stop.cpp b/flang-rt/lib/runtime/stop.cpp
index c5f3b5506..a4ef71044 100644
--- a/flang-rt/lib/runtime/stop.cpp
+++ b/flang-rt/lib/runtime/stop.cpp
@@ -115,8 +115,8 @@ static void CloseAllExternalUnits(const char *why) {
if (Fortran::runtime::executionEnvironment.noStopMessage && !isErrorStop) {
std::printf("%s\n", code);
} else {
- std::printf("Fortran %s: %s\n", isErrorStop ? "ERROR STOP" : "STOP",
- code);
+ std::printf(
+ "Fortran %s: %s\n", isErrorStop ? "ERROR STOP" : "STOP", code);
}
}
if (isErrorStop) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/133803
More information about the llvm-commits
mailing list