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 acab11e commit d35658bCopy full SHA for d35658b
clang/lib/CIR/CodeGen/CIRGenExpr.cpp
@@ -641,6 +641,7 @@ LValue CIRGenFunction::emitUnaryOpLValue(const UnaryOperator *e) {
641
QualType elemTy = exprTy->castAs<clang::ComplexType>()->getElementType();
642
mlir::Location loc = getLoc(e->getExprLoc());
643
Address component = builder.createComplexRealPtr(loc, lv.getAddress());
644
+ assert(!cir::MissingFeatures::opTBAA());
645
LValue elemLV = makeAddrLValue(component, elemTy);
646
elemLV.getQuals().addQualifiers(lv.getQuals());
647
return elemLV;
0 commit comments