Skip to content

Commit 93e929e

Browse files
committed
Fix build issue
1 parent 5e7032e commit 93e929e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CIR/CodeGen/CIRGenExprCXX.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -709,8 +709,8 @@ void CIRGenFunction::emitCXXDeleteExpr(const CXXDeleteExpr *e) {
709709
ptr = ptr.withElementType(builder, convertTypeForMem(deleteTy));
710710

711711
if (e->isArrayForm() &&
712-
cgm.getContext().getTargetInfo().emitVectorDeletingDtors(
713-
cgm.getContext().getLangOpts())) {
712+
cgm.getASTContext().getTargetInfo().emitVectorDeletingDtors(
713+
cgm.getASTContext().getLangOpts())) {
714714
cgm.errorNYI(e->getSourceRange(),
715715
"emitCXXDeleteExpr: emitVectorDeletingDtors");
716716
}

0 commit comments

Comments
 (0)