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.h | |
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.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 23da39ca6b3..ec925527901 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -631,11 +631,11 @@ public: /// getLabelAfterInsn - Return Label immediately following the instruction. const MCSymbol *getLabelAfterInsn(const MachineInstr *MI); - /// beginScope - Process beginning of a scope. - void beginScope(const MachineInstr *MI); + /// beginInstruction - Process beginning of an instruction. + void beginInstruction(const MachineInstr *MI); - /// endScope - Prcess end of a scope. - void endScope(const MachineInstr *MI); + /// endInstruction - Prcess end of an instruction. + void endInstruction(const MachineInstr *MI); }; } // End of namespace llvm |