Revert "[CIR][NFC] Add NYI for OMPSplitDirective stmt" (#190346)

Reverts llvm/llvm-project#190329

The patch this depends on got reverted.
This commit is contained in:
Erich Keane 2026-04-03 07:40:42 -07:00 committed by GitHub
parent 5d08beaec8
commit 11d65dc8c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 8 deletions

View File

@ -2223,7 +2223,6 @@ public:
mlir::LogicalResult
emitOMPGenericLoopDirective(const OMPGenericLoopDirective &s);
mlir::LogicalResult emitOMPReverseDirective(const OMPReverseDirective &s);
mlir::LogicalResult emitOMPSplitDirective(const OMPSplitDirective &s);
mlir::LogicalResult
emitOMPInterchangeDirective(const OMPInterchangeDirective &s);
mlir::LogicalResult emitOMPAssumeDirective(const OMPAssumeDirective &s);

View File

@ -403,8 +403,6 @@ mlir::LogicalResult CIRGenFunction::emitStmt(const Stmt *s,
return emitOMPGenericLoopDirective(cast<OMPGenericLoopDirective>(*s));
case Stmt::OMPReverseDirectiveClass:
return emitOMPReverseDirective(cast<OMPReverseDirective>(*s));
case Stmt::OMPSplitDirectiveClass:
return emitOMPSplitDirective(cast<OMPSplitDirective>(*s));
case Stmt::OMPInterchangeDirectiveClass:
return emitOMPInterchangeDirective(cast<OMPInterchangeDirective>(*s));
case Stmt::OMPAssumeDirectiveClass:

View File

@ -470,11 +470,6 @@ CIRGenFunction::emitOMPReverseDirective(const OMPReverseDirective &s) {
return mlir::failure();
}
mlir::LogicalResult
CIRGenFunction::emitOMPSplitDirective(const OMPSplitDirective &s) {
getCIRGenModule().errorNYI(s.getSourceRange(), "OpenMP OMPSplitDirective");
return mlir::failure();
}
mlir::LogicalResult
CIRGenFunction::emitOMPInterchangeDirective(const OMPInterchangeDirective &s) {
getCIRGenModule().errorNYI(s.getSourceRange(),
"OpenMP OMPInterchangeDirective");