Skip to content

Commit c794a25

Browse files
committed
Fix bad namespacer
1 parent bd8f03b commit c794a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenFunction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ void CIRGenFunction::emitAndUpdateRetAlloca(QualType type, mlir::Location loc,
216216
void CIRGenFunction::declare(mlir::Value addrVal, const Decl *var, QualType ty,
217217
mlir::Location loc, CharUnits alignment,
218218
bool isParam) {
219-
assert(mlir::isa<NamedDecl>(var) && "Needs a named decl");
219+
assert(isa<NamedDecl>(var) && "Needs a named decl");
220220
assert(!cir::MissingFeatures::cgfSymbolTable());
221221

222222
auto allocaOp = cast<cir::AllocaOp>(addrVal.getDefiningOp());

0 commit comments

Comments
 (0)