diff options
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index bd97b25555c..ec4af58fc37 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -1315,7 +1315,7 @@ CodeGenFunction::GenerateCopyHelperFunction(const CGBlockInfo &blockInfo) { false); StartFunction(FD, C.VoidTy, Fn, FI, args, SourceLocation()); // Don't emit any line table entries for the body of this function. - BuiltinLocation BL(*this, Builder); + ArtificialLocation AL(*this, Builder); llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo(); @@ -1490,7 +1490,7 @@ CodeGenFunction::GenerateDestroyHelperFunction(const CGBlockInfo &blockInfo) { false, false); StartFunction(FD, C.VoidTy, Fn, FI, args, SourceLocation()); // Don't emit any line table entries for the body of this function. - BuiltinLocation BL(*this, Builder); + ArtificialLocation AL(*this, Builder); llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo(); |