================ @@ -272,6 +275,17 @@ mlir::LogicalResult CIRGenFunction::emitSimpleStmt(const Stmt *s, return mlir::success(); } +mlir::LogicalResult CIRGenFunction::emitLabelStmt(const clang::LabelStmt &s) { + + if (emitLabel(s.getDecl()).failed()) + return mlir::failure(); + + // IsEHa: not implemented. ---------------- mmha wrote:
Can you make this a `errorNYI`? https://github.com/llvm/llvm-project/pull/152802 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits