summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGBlocks.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2013-07-18 01:36:04 +0000
committerAdrian Prantl <aprantl@apple.com>2013-07-18 01:36:04 +0000
commitb75016d29901ece3509f433c0adb6e9263562597 (patch)
tree99f861f3347bedb478cbeba71693347e67d3295d /clang/lib/CodeGen/CGBlocks.cpp
parentf8bc4d878c093a58403b20b73e5e3fcc5ea4b880 (diff)
downloadbcm5719-llvm-b75016d29901ece3509f433c0adb6e9263562597.tar.gz
bcm5719-llvm-b75016d29901ece3509f433c0adb6e9263562597.zip
s/BuiltinLocation/ArtificialLocation/
llvm-svn: 186557
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r--clang/lib/CodeGen/CGBlocks.cpp4
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();
OpenPOWER on IntegriCloud