[PATCH] D121186: [NFC][flang][OpenMP] Fixes formatting issues with D110714
Peixin Qiao via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 8 04:52:51 PST 2022
peixin added inline comments.
================
Comment at: flang/lib/Semantics/check-omp-structure.cpp:1348
+ "Atomic update variable '%s' not found in the RHS of the \
+assignment statement in an ATOMIC (UPDATE) construct"_err_en_US,
variableName);
----------------
Please check other code. This should be like the following (if not exceeding 80 columns):
```
"Atomic update variable '%s' not found in the RHS of the assignment "
"statement in an ATOMIC (UPDATE) construct"_err_en_US, variableName);
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121186/new/
https://reviews.llvm.org/D121186
More information about the llvm-commits
mailing list