forked from OSchip/llvm-project
Apply clang-tidy fixes for llvm-prefer-isa-or-dyn-cast-in-conditionals in OpenMPDialect.cpp (NFC)
This commit is contained in:
parent
ec34de1bfe
commit
061f253e13
|
@ -986,7 +986,7 @@ LogicalResult CancelOp::verify() {
|
||||||
return emitOpError() << "cancel sections must appear "
|
return emitOpError() << "cancel sections must appear "
|
||||||
<< "inside a sections region";
|
<< "inside a sections region";
|
||||||
}
|
}
|
||||||
if (parentOp->getParentOp() && isa<SectionsOp>(parentOp->getParentOp()) &&
|
if (isa_and_nonnull<SectionsOp>(parentOp->getParentOp()) &&
|
||||||
cast<SectionsOp>(parentOp->getParentOp()).nowaitAttr()) {
|
cast<SectionsOp>(parentOp->getParentOp()).nowaitAttr()) {
|
||||||
return emitError() << "A sections construct that is canceled "
|
return emitError() << "A sections construct that is canceled "
|
||||||
<< "must not have a nowait clause";
|
<< "must not have a nowait clause";
|
||||||
|
|
Loading…
Reference in New Issue