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 1543f10 commit d181813Copy full SHA for d181813
clang/lib/CIR/CodeGen/CIRGenExpr.cpp
@@ -657,6 +657,7 @@ LValue CIRGenFunction::emitUnaryOpLValue(const UnaryOperator *e) {
657
QualType elemTy = exprTy->castAs<clang::ComplexType>()->getElementType();
658
mlir::Location loc = getLoc(e->getExprLoc());
659
Address component = builder.createComplexRealPtr(loc, lv.getAddress());
660
+ assert(!cir::MissingFeatures::opTBAA());
661
LValue elemLV = makeAddrLValue(component, elemTy);
662
elemLV.getQuals().addQualifiers(lv.getQuals());
663
return elemLV;
0 commit comments