diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-02-26 23:20:29 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-02-26 23:20:29 +0000 |
commit | b07dddda00ba3e7243af87940d079de4f2520f04 (patch) | |
tree | ca693d3ffae425e504ab287266f40d27fd565a6f /include/llvm | |
parent | 272940884048c893b554d0747966d8da2f104043 (diff) | |
download | external_llvm-b07dddda00ba3e7243af87940d079de4f2520f04.zip external_llvm-b07dddda00ba3e7243af87940d079de4f2520f04.tar.gz external_llvm-b07dddda00ba3e7243af87940d079de4f2520f04.tar.bz2 |
Doxygenify comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11891 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/iTerminators.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/include/llvm/iTerminators.h b/include/llvm/iTerminators.h index 3c681a5..f6e1c36 100644 --- a/include/llvm/iTerminators.h +++ b/include/llvm/iTerminators.h @@ -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: |