diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-29 00:00:41 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-29 00:00:41 +0000 |
commit | bfa4dc551218f79a6d2584bccf9e188a1567bbe3 (patch) | |
tree | 4d1a2b202997358bb359b0e490438e313ae82525 /clang/lib/CodeGen/CGClass.cpp | |
parent | 4fd315ffbdbb4a175d729f08abea8b37e713996d (diff) | |
download | bcm5719-llvm-bfa4dc551218f79a6d2584bccf9e188a1567bbe3.tar.gz bcm5719-llvm-bfa4dc551218f79a6d2584bccf9e188a1567bbe3.zip |
Rename EmitStopPoint in CGDebugInfo to EmitLocation. "stop points" don't
exist anymore.
llvm-svn: 140739
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 17bd594280c..66603acb242 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -693,7 +693,7 @@ void CodeGenFunction::EmitConstructorBody(FunctionArgList &Args) { // delegation optimization. if (CtorType == Ctor_Complete && IsConstructorDelegationValid(Ctor)) { if (CGDebugInfo *DI = getDebugInfo()) - DI->EmitStopPoint(Builder); + DI->EmitLocation(Builder); EmitDelegateCXXConstructorCall(Ctor, Ctor_Base, Args); return; } |