From ffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 6 May 2011 15:28:56 +0000 Subject: [PATCH] Update comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130987 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/AsmPrinter.h | 5 ++++- lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index d9c4551b4e5..f881cf7423a 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 &Moves) const; //===------------------------------------------------------------------===// diff --git a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp index 0e9fc261c60..a94c0c1250f 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 &Moves) const { for (unsigned i = 0, N = Moves.size(); i < N; ++i) { -- 2.34.1