summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenFunction.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-04-13 00:08:43 +0000
committerDevang Patel <dpatel@apple.com>2010-04-13 00:08:43 +0000
commit74c10507a6c9b0eb034ffe154a194de2088e7522 (patch)
tree1e11085efdae9b8acd30136b95aeccd1e8d8e76e /clang/lib/CodeGen/CodeGenFunction.cpp
parent9d94f04f27304615381712fc836391d5f745e545 (diff)
downloadbcm5719-llvm-74c10507a6c9b0eb034ffe154a194de2088e7522.tar.gz
bcm5719-llvm-74c10507a6c9b0eb034ffe154a194de2088e7522.zip
Fix debug info for cleanup block.
llvm-svn: 101100
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp
index f38d8a132f0..110a8dc812d 100644
--- a/clang/lib/CodeGen/CodeGenFunction.cpp
+++ b/clang/lib/CodeGen/CodeGenFunction.cpp
@@ -749,6 +749,11 @@ void CodeGenFunction::EmitCleanupBlock() {
return;
}
+ // Scrub debug location info.
+ for (llvm::BasicBlock::iterator LBI = Info.CleanupBlock->begin(),
+ LBE = Info.CleanupBlock->end(); LBI != LBE; ++LBI)
+ Builder.SetInstDebugLocation(LBI);
+
llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
if (CurBB && !CurBB->getTerminator() &&
Info.CleanupBlock->getNumUses() == 0) {
OpenPOWER on IntegriCloud