From 4b08ca8f2e16e7fea0840bc83cb207aa53c5cfd2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 15 Mar 2008 21:10:16 +0000 Subject: switch the VarDecl allocation model to go through ASTContext. llvm-svn: 48396 --- clang/Driver/RewriteTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/Driver/RewriteTest.cpp') diff --git a/clang/Driver/RewriteTest.cpp b/clang/Driver/RewriteTest.cpp index 652ce1c82c3..dfad8ecccf7 100644 --- a/clang/Driver/RewriteTest.cpp +++ b/clang/Driver/RewriteTest.cpp @@ -1744,9 +1744,9 @@ Stmt *RewriteTest::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) { InsertText(SourceLocation::getFileLoc(MainFileID, 0), StrObjDecl.c_str(), StrObjDecl.size()); - FileVarDecl *NewVD = new FileVarDecl(SourceLocation(), + FileVarDecl *NewVD = FileVarDecl::Create(SourceLocation(), &Context->Idents.get(S.c_str()), strType, - VarDecl::Static, NULL); + VarDecl::Static, NULL, *Context); DeclRefExpr *DRE = new DeclRefExpr(NewVD, strType, SourceLocation()); Expr *Unop = new UnaryOperator(DRE, UnaryOperator::AddrOf, Context->getPointerType(DRE->getType()), -- cgit v1.2.3