diff options
author | Devang Patel <dpatel@apple.com> | 2010-10-26 17:49:02 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-10-26 17:49:02 +0000 |
commit | b5694e702cbe1eec8c488717ebb61d00c436b68e (patch) | |
tree | 60fe1f77b1f3fc1a0c40a4d75408580834e827b5 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 284cb361d1b4726aa84003e32fede9a89948eba9 (diff) | |
download | bcm5719-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/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 221e5183434..5187d3ec903 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2457,8 +2457,8 @@ const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) { return I->second; } -/// beginScope - Process beginning of a scope. -void DwarfDebug::beginScope(const MachineInstr *MI) { +/// beginInstruction - Process beginning of an instruction. +void DwarfDebug::beginInstruction(const MachineInstr *MI) { if (InsnNeedsLabel.count(MI) == 0) { LabelsBeforeInsn[MI] = PrevLabel; return; @@ -2492,8 +2492,8 @@ void DwarfDebug::beginScope(const MachineInstr *MI) { assert (0 && "Instruction is not processed!"); } -/// endScope - Process end of a scope. -void DwarfDebug::endScope(const MachineInstr *MI) { +/// endInstruction - Process end of an instruction. +void DwarfDebug::endInstruction(const MachineInstr *MI) { if (InsnsEndScopeSet.count(MI) != 0) { // Emit a label if this instruction ends a scope. MCSymbol *Label = MMI->getContext().CreateTempSymbol(); |