aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-09-29 00:00:41 +0000
committerEric Christopher <echristo@apple.com>2011-09-29 00:00:41 +0000
commit5321bc492b2f29deecb6cb0bc68b7887164ee8a6 (patch)
treef50631ca3429910cda6f8d2bb8be7f9b9a59aceb /lib/CodeGen/CGStmt.cpp
parent69a1b749ed44d59a86a9b10f21259b3a222ba068 (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/CGStmt.cpp')
-rw-r--r--lib/CodeGen/CGStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp
index e070cc312a..1cdb660fa3 100644
--- a/lib/CodeGen/CGStmt.cpp
+++ b/lib/CodeGen/CGStmt.cpp
@@ -35,7 +35,7 @@ void CodeGenFunction::EmitStopPoint(const Stmt *S) {
DI->setLocation(S->getLocEnd());
else
DI->setLocation(S->getLocStart());
- DI->EmitStopPoint(Builder);
+ DI->EmitLocation(Builder);
}
}