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/CGDebugInfo.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/CGDebugInfo.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index b48475f432a..2edb065dd6e 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -1763,6 +1763,10 @@ void CGDebugInfo::EmitStopPoint(CGBuilderTy &Builder) { if (!Builder.getCurrentDebugLocation().isUnknown()) return; + // The file may have had a line directive change. Process any of + // those before updating the state. + UpdateLineDirectiveRegion(Builder); + // Update last state. PrevLoc = CurLoc; |

