diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-07-18 01:36:04 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-07-18 01:36:04 +0000 |
commit | b75016d29901ece3509f433c0adb6e9263562597 (patch) | |
tree | 99f861f3347bedb478cbeba71693347e67d3295d /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | f8bc4d878c093a58403b20b73e5e3fcc5ea4b880 (diff) | |
download | bcm5719-llvm-b75016d29901ece3509f433c0adb6e9263562597.tar.gz bcm5719-llvm-b75016d29901ece3509f433c0adb6e9263562597.zip |
s/BuiltinLocation/ArtificialLocation/
llvm-svn: 186557
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 5e5caf370de..b6cf2f91460 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -68,7 +68,7 @@ NoLocation::~NoLocation() { } } -BuiltinLocation::BuiltinLocation(CodeGenFunction &CGF, CGBuilderTy &B) +ArtificialLocation::ArtificialLocation(CodeGenFunction &CGF, CGBuilderTy &B) : DI(CGF.getDebugInfo()), Builder(B) { if (DI) { SavedLoc = DI->getLocation(); @@ -83,7 +83,7 @@ BuiltinLocation::BuiltinLocation(CodeGenFunction &CGF, CGBuilderTy &B) } } -BuiltinLocation::~BuiltinLocation() { +ArtificialLocation::~ArtificialLocation() { if (DI) { assert(Builder.getCurrentDebugLocation().getLine() == 0); DI->CurLoc = SavedLoc; |