Update comments.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 6 May 2011 15:28:56 +0000 (15:28 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 6 May 2011 15:28:56 +0000 (15:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130987 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/AsmPrinter.h
lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp

index d9c4551b4e5b151375edd40e7379de4ce0223318..f881cf7423ac850c53fd46740500c212b4553ae6 100644 (file)
@@ -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;
 
     //===------------------------------------------------------------------===//
index 0e9fc261c6054557694f1d243911846139c7ee26..a94c0c1250ff489530b4c01d1d596a1bed8a1562 100644 (file)
@@ -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) {