We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76bf4d commit 08279d3Copy full SHA for 08279d3
clang/lib/CIR/CodeGen/CIRGenStmt.cpp
@@ -26,7 +26,9 @@ using namespace cir;
26
void CIRGenFunction::emitCompoundStmtWithoutScope(const CompoundStmt &s) {
27
for (auto *curStmt : s.body()) {
28
if (emitStmt(curStmt, /*useCurrentScope=*/false).failed())
29
- getCIRGenModule().errorNYI(curStmt->getSourceRange(), "statement");
+ getCIRGenModule().errorNYI(curStmt->getSourceRange(),
30
+ std::string("emitCompoundStmtWithoutScope: ") +
31
+ curStmt->getStmtClassName());
32
}
33
34
0 commit comments