[llvm-branch-commits] [flang] e825f49 - [NFC][flang][OpenMP] Fixes formatting issues with D110714
Nimish Mishra via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Mar 12 22:00:51 PST 2022
Author: Nimish Mishra
Date: 2022-03-13T17:00:23+05:30
New Revision: e825f49b80df3479108171d6aac3208965744d95
URL: https://github.com/llvm/llvm-project/commit/e825f49b80df3479108171d6aac3208965744d95
DIFF: https://github.com/llvm/llvm-project/commit/e825f49b80df3479108171d6aac3208965744d95.diff
LOG: [NFC][flang][OpenMP] Fixes formatting issues with D110714
This NFC fixes formatting issues introduced with https://reviews.llvm.org/D110714
Reviewed By: peixin, shraiysh
Differential Revision: https://reviews.llvm.org/D121186
Added:
Modified:
flang/lib/Semantics/check-omp-structure.cpp
Removed:
################################################################################
diff --git a/flang/lib/Semantics/check-omp-structure.cpp b/flang/lib/Semantics/check-omp-structure.cpp
index 5109618b8c73d..5f5811cdf3fbe 100644
--- a/flang/lib/Semantics/check-omp-structure.cpp
+++ b/flang/lib/Semantics/check-omp-structure.cpp
@@ -1344,7 +1344,8 @@ bool OmpStructureChecker::IsOperatorValid(const T &node, const D &variable) {
if ((exprLeft.value().source.ToString() != variableName) &&
(exprRight.value().source.ToString() != variableName)) {
context_.Say(variable.GetSource(),
- "Atomic update variable '%s' not found in the RHS of the assignment statement in an ATOMIC (UPDATE) construct"_err_en_US,
+ "Atomic update variable '%s' not found in the RHS of the "
+ "assignment statement in an ATOMIC (UPDATE) construct"_err_en_US,
variableName);
}
return common::HasMember<T, AllowedBinaryOperators>;
@@ -1368,7 +1369,8 @@ void OmpStructureChecker::CheckAtomicUpdateAssignmentStmt(
name->source == "iand" || name->source == "ior" ||
name->source == "ieor")) {
context_.Say(expr.source,
- "Invalid intrinsic procedure name in OpenMP ATOMIC (UPDATE) statement"_err_en_US);
+ "Invalid intrinsic procedure name in "
+ "OpenMP ATOMIC (UPDATE) statement"_err_en_US);
} else if (name) {
bool foundMatch{false};
if (auto varDesignatorIndirection =
@@ -1394,7 +1396,8 @@ void OmpStructureChecker::CheckAtomicUpdateAssignmentStmt(
}
if (!foundMatch) {
context_.Say(expr.source,
- "Atomic update variable '%s' not found in the argument list of intrinsic procedure"_err_en_US,
+ "Atomic update variable '%s' not found in the "
+ "argument list of intrinsic procedure"_err_en_US,
var.GetSource().ToString());
}
}
@@ -1417,7 +1420,8 @@ void OmpStructureChecker::CheckAtomicMemoryOrderClause(
numMemoryOrderClause++;
if (numMemoryOrderClause > 1) {
context_.Say(clause.source,
- "More than one memory order clause not allowed on OpenMP Atomic construct"_err_en_US);
+ "More than one memory order clause not allowed on OpenMP "
+ "Atomic construct"_err_en_US);
return;
}
}
@@ -1433,7 +1437,8 @@ void OmpStructureChecker::CheckAtomicMemoryOrderClause(
numMemoryOrderClause++;
if (numMemoryOrderClause > 1) {
context_.Say(clause.source,
- "More than one memory order clause not allowed on OpenMP Atomic construct"_err_en_US);
+ "More than one memory order clause not allowed on "
+ "OpenMP Atomic construct"_err_en_US);
return;
}
}
@@ -1443,7 +1448,8 @@ void OmpStructureChecker::CheckAtomicMemoryOrderClause(
numMemoryOrderClause++;
if (numMemoryOrderClause > 1) {
context_.Say(clause.source,
- "More than one memory order clause not allowed on OpenMP Atomic construct"_err_en_US);
+ "More than one memory order clause not "
+ "allowed on OpenMP Atomic construct"_err_en_US);
return;
}
}
More information about the llvm-branch-commits
mailing list