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 | 5321bc492b2f29deecb6cb0bc68b7887164ee8a6 (patch) | |
tree | f50631ca3429910cda6f8d2bb8be7f9b9a59aceb /lib/CodeGen/CGClass.cpp | |
parent | 69a1b749ed44d59a86a9b10f21259b3a222ba068 (diff) |
Rename EmitStopPoint in CGDebugInfo to EmitLocation. "stop points" don't
exist anymore.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140739 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGClass.cpp')
-rw-r--r-- | lib/CodeGen/CGClass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGClass.cpp b/lib/CodeGen/CGClass.cpp index 17bd594280..66603acb24 100644 --- a/lib/CodeGen/CGClass.cpp +++ b/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; } |