Skip to content

Commit 40371c0

Browse files
author
git apple-llvm automerger
committed
Merge commit '08279d3924a8' from llvm.org/main into next
2 parents 750c219 + 08279d3 commit 40371c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenStmt.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ using namespace cir;
2626
void CIRGenFunction::emitCompoundStmtWithoutScope(const CompoundStmt &s) {
2727
for (auto *curStmt : s.body()) {
2828
if (emitStmt(curStmt, /*useCurrentScope=*/false).failed())
29-
getCIRGenModule().errorNYI(curStmt->getSourceRange(), "statement");
29+
getCIRGenModule().errorNYI(curStmt->getSourceRange(),
30+
std::string("emitCompoundStmtWithoutScope: ") +
31+
curStmt->getStmtClassName());
3032
}
3133
}
3234

0 commit comments

Comments
 (0)