[clang] [CIR] Handle NullStmt (PR #134889)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 8 11:10:27 PDT 2025
================
@@ -57,6 +57,7 @@ mlir::LogicalResult CIRGenFunction::emitStmt(const Stmt *s,
switch (s->getStmtClass()) {
case Stmt::BreakStmtClass:
+ case Stmt::NullStmtClass:
----------------
andykaylor wrote:
I'm fine with that. Trying to avoid doing multiple things, but this is all basically doing nothing in the correct place, so it sort of makes sense.
https://github.com/llvm/llvm-project/pull/134889
More information about the cfe-commits
mailing list