summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-10-26 17:49:02 +0000
committerDevang Patel <dpatel@apple.com>2010-10-26 17:49:02 +0000
commitb5694e702cbe1eec8c488717ebb61d00c436b68e (patch)
tree60fe1f77b1f3fc1a0c40a4d75408580834e827b5 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parent284cb361d1b4726aa84003e32fede9a89948eba9 (diff)
downloadbcm5719-llvm-b5694e702cbe1eec8c488717ebb61d00c436b68e.tar.gz
bcm5719-llvm-b5694e702cbe1eec8c488717ebb61d00c436b68e.zip
s/beginScope/beginInstruction/g
s/endScope/endInstruction/g llvm-svn: 117376
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 0de20211336..d1d01b630a7 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -638,7 +638,7 @@ void AsmPrinter::EmitFunctionBody() {
if (ShouldPrintDebugScopes) {
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
- DD->beginScope(II);
+ DD->beginInstruction(II);
}
if (isVerbose())
@@ -672,7 +672,7 @@ void AsmPrinter::EmitFunctionBody() {
if (ShouldPrintDebugScopes) {
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
- DD->endScope(II);
+ DD->endInstruction(II);
}
}
}
OpenPOWER on IntegriCloud