summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-05-06 15:28:56 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-05-06 15:28:56 +0000
commitffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7 (patch)
tree5567f00dc5f787e4cd2b86e0dfd9762fffcaac5f
parentba39f88d0ede1d889a9a564562422d9c9c5134a0 (diff)
downloadllvm-ffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7.tar.gz
llvm-ffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7.tar.bz2
llvm-ffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7.tar.xz
Update comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130987 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h5
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp4
2 files changed, 6 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index d9c4551b4e..f881cf7423 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -396,9 +396,12 @@ namespace llvm {
// Dwarf Lowering Routines
//===------------------------------------------------------------------===//
- /// EmitFrameMoves - Emit frame instructions to describe the layout of the
+ /// EmitCFIFrameMove - Emit frame instruction to describe the layout of the
/// frame.
void EmitCFIFrameMove(const MachineMove &Move) const;
+
+ /// EmitCFIFrameMoves - Emit frame instructions to describe the layout of
+ /// the frame.
void EmitCFIFrameMoves(const std::vector<MachineMove> &Moves) const;
//===------------------------------------------------------------------===//
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
index 0e9fc261c6..a94c0c1250 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
@@ -206,7 +206,7 @@ void AsmPrinter::EmitSectionOffset(const MCSymbol *Label,
// Dwarf Lowering Routines
//===----------------------------------------------------------------------===//
-/// EmitFrameMoves - Emit a frame instruction.
+/// EmitCFIFrameMove - Emit a frame instruction.
void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const {
const TargetRegisterInfo *RI = TM.getRegisterInfo();
@@ -233,7 +233,7 @@ void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const {
}
}
-/// EmitFrameMoves - Emit frame instructions to describe the layout of the
+/// EmitCFIFrameMoves - Emit frame instructions to describe the layout of the
/// frame.
void AsmPrinter::EmitCFIFrameMoves(const std::vector<MachineMove> &Moves) const {
for (unsigned i = 0, N = Moves.size(); i < N; ++i) {