Skip to content

Commit 4d2d168

Browse files
committed
Formatted using git clang-format
1 parent 1c24552 commit 4d2d168

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flang/lib/Semantics/check-omp-structure.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5670,7 +5670,7 @@ void OmpStructureChecker::Enter(const parser::OpenMPInteropConstruct &x) {
56705670
const auto *objectSymbol{name->symbol};
56715671
if (llvm::is_contained(objectSymbolList, objectSymbol)) {
56725672
context_.Say(GetContext().directiveSource,
5673-
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
5673+
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
56745674
} else {
56755675
objectSymbolList.insert(objectSymbol);
56765676
}
@@ -5685,7 +5685,7 @@ void OmpStructureChecker::Enter(const parser::OpenMPInteropConstruct &x) {
56855685
const auto *objectSymbol{name->symbol};
56865686
if (llvm::is_contained(objectSymbolList, objectSymbol)) {
56875687
context_.Say(GetContext().directiveSource,
5688-
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
5688+
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
56895689
} else {
56905690
objectSymbolList.insert(objectSymbol);
56915691
}
@@ -5697,7 +5697,7 @@ void OmpStructureChecker::Enter(const parser::OpenMPInteropConstruct &x) {
56975697
const auto *objectSymbol{name->symbol};
56985698
if (llvm::is_contained(objectSymbolList, objectSymbol)) {
56995699
context_.Say(GetContext().directiveSource,
5700-
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
5700+
"Each interop-var may be specified for at most one action-clause of each INTEROP construct."_err_en_US);
57015701
} else {
57025702
objectSymbolList.insert(objectSymbol);
57035703
}
@@ -5708,11 +5708,11 @@ void OmpStructureChecker::Enter(const parser::OpenMPInteropConstruct &x) {
57085708
}
57095709
if (targetCount > 1 || targetSyncCount > 1) {
57105710
context_.Say(GetContext().directiveSource,
5711-
"Each interop-type may be specified at most once."_err_en_US);
5711+
"Each interop-type may be specified at most once."_err_en_US);
57125712
}
57135713
if (isDependClauseOccured && !targetSyncCount) {
57145714
context_.Say(GetContext().directiveSource,
5715-
"A DEPEND clause can only appear on the directive if the interop-type includes TARGETSYNC"_err_en_US);
5715+
"A DEPEND clause can only appear on the directive if the interop-type includes TARGETSYNC"_err_en_US);
57165716
}
57175717
}
57185718

0 commit comments

Comments
 (0)