Skip to content

Commit 3531b74

Browse files
committed
[CIR] Fix after rebase
1 parent bb05de1 commit 3531b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenExpr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ CIRGenFunction::buildExtVectorElementExpr(const ExtVectorElementExpr *E) {
11141114
// it.
11151115
LValueBaseInfo BaseInfo;
11161116
// TODO(cir): Support TBAA
1117-
assert(!UnimplementedFeature::tbaa());
1117+
assert(!MissingFeatures::tbaa());
11181118
Address Ptr = buildPointerWithAlignment(E->getBase(), &BaseInfo);
11191119
const auto *PT = E->getBase()->getType()->castAs<clang::PointerType>();
11201120
Base = makeAddrLValue(Ptr, PT->getPointeeType(), BaseInfo);

0 commit comments

Comments
 (0)