[llvm-commits] CVS: llvm/include/llvm/iTerminators.h
Misha Brukman
brukman at cs.uiuc.edu
Thu Feb 26 17:21:01 PST 2004
Changes in directory llvm/include/llvm:
iTerminators.h updated: 1.39 -> 1.40
---
Log message:
Doxygenify comments.
---
Diffs of the changes: (+9 -10)
Index: llvm/include/llvm/iTerminators.h
diff -u llvm/include/llvm/iTerminators.h:1.39 llvm/include/llvm/iTerminators.h:1.40
--- llvm/include/llvm/iTerminators.h:1.39 Tue Feb 24 00:26:00 2004
+++ llvm/include/llvm/iTerminators.h Thu Feb 26 17:20:29 2004
@@ -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 @@
};
//===---------------------------------------------------------------------------
-// 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 @@
//===---------------------------------------------------------------------------
-// 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 @@
}
};
-
//===---------------------------------------------------------------------------
-// InvokeInst - Invoke instruction
-//
+/// InvokeInst - Invoke instruction
+///
class InvokeInst : public TerminatorInst {
InvokeInst(const InvokeInst &BI);
public:
More information about the llvm-commits
mailing list