diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-29 00:00:35 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-29 00:00:35 +0000 |
commit | e655657c94b20710e65fd20da2a7f622ed6a0e1c (patch) | |
tree | 85d6f0c10b6806396499c9c3fbcf72c87892f69e /clang/lib/CodeGen/CGStmt.cpp | |
parent | 250511bc75cf7c0d560a4ec4bcd615e8d6e4fce8 (diff) | |
download | bcm5719-llvm-e655657c94b20710e65fd20da2a7f622ed6a0e1c.tar.gz bcm5719-llvm-e655657c94b20710e65fd20da2a7f622ed6a0e1c.zip |
Call UpdateLineDirectiveRegion every time we want to emit a stop
point in the code. Ensures that we don't miss any places and the
check is reasonably cheap.
llvm-svn: 140737
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 93763e31438..e070cc312a9 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -35,7 +35,6 @@ void CodeGenFunction::EmitStopPoint(const Stmt *S) { DI->setLocation(S->getLocEnd()); else DI->setLocation(S->getLocStart()); - DI->UpdateLineDirectiveRegion(Builder); DI->EmitStopPoint(Builder); } } |