Doxygenify comments.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 26 Feb 2004 23:20:29 +0000 (23:20 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 26 Feb 2004 23:20:29 +0000 (23:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11891 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/iTerminators.h

index 3c681a502be6b8583eacd85547fb486d0a8c553f..f6e1c362cfdc291dbf993f2dbc09511f7021133a 100644 (file)
@@ -21,9 +21,9 @@
 namespace llvm {
 
 //===---------------------------------------------------------------------------
-// ReturnInst - Return a value (possibly void), from a function.  Execution does
-//              not continue in this function any longer.
-//
+/// ReturnInst - Return a value (possibly void), from a function.  Execution
+/// does not continue in this function any longer.
+///
 class ReturnInst : public TerminatorInst {
   ReturnInst(const ReturnInst &RI) : TerminatorInst(Instruction::Ret) {
     if (RI.Operands.size()) {
@@ -83,8 +83,8 @@ public:
 };
 
 //===---------------------------------------------------------------------------
-// BranchInst - Conditional or Unconditional Branch instruction.
-//
+/// BranchInst - Conditional or Unconditional Branch instruction.
+///
 class BranchInst : public TerminatorInst {
   BranchInst(const BranchInst &BI);
 public:
@@ -153,8 +153,8 @@ public:
 
 
 //===---------------------------------------------------------------------------
-// SwitchInst - Multiway switch
-//
+/// SwitchInst - Multiway switch
+///
 class SwitchInst : public TerminatorInst {
   // Operand[0]    = Value to switch on
   // Operand[1]    = Default basic block destination
@@ -254,10 +254,9 @@ public:
   }
 };
 
-
 //===---------------------------------------------------------------------------
-// InvokeInst - Invoke instruction
-//
+/// InvokeInst - Invoke instruction
+///
 class InvokeInst : public TerminatorInst {
   InvokeInst(const InvokeInst &BI);
 public: