From d6e20fbe12db50237aa7fb0a8ea05f7cfd2f4b13 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Sat, 31 Jul 2004 08:57:27 +0000 Subject: [PATCH] Doxygenify some comments. llvm-svn: 15360 --- llvm/include/llvm/Target/TargetInstrInfo.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/llvm/include/llvm/Target/TargetInstrInfo.h b/llvm/include/llvm/Target/TargetInstrInfo.h index a0b9e3036862..ab1f88b43444 100644 --- a/llvm/include/llvm/Target/TargetInstrInfo.h +++ b/llvm/include/llvm/Target/TargetInstrInfo.h @@ -147,27 +147,23 @@ public: return get(Opcode).Flags & M_TERMINATOR_FLAG; } - // - // Return true if the instruction is a register to register move and - // leave the source and dest operands in the passed parameters. - // + /// Return true if the instruction is a register to register move + /// and leave the source and dest operands in the passed parameters. virtual bool isMoveInstr(const MachineInstr& MI, unsigned& sourceReg, unsigned& destReg) const { return false; } - // - // Insert a goto (unconditional branch) sequence to MBB, right - // before MBBI + /// Insert a goto (unconditional branch) sequence to MBB, right + /// before MBBI virtual void insertGoto(const MachineBasicBlock& MBB, MachineBasicBlock::iterator MBBI) const { assert(0 && "Target didn't implement insertGoto!"); } - // - // Reverses the branch condition of the MachineInstr pointed by - // MI. The instruction is replaced and the new MI is returned. + /// Reverses the branch condition of the MachineInstr pointed by + /// MI. The instruction is replaced and the new MI is returned. virtual MachineBasicBlock::iterator reverseBranchCondition(MachineBasicBlock::iterator MI) const { assert(0 && "Target didn't implement reverseBranchCondition!");