mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
Doxygenify comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11891 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2729408840
commit
b07dddda00
@ -21,9 +21,9 @@
|
|||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
//===---------------------------------------------------------------------------
|
//===---------------------------------------------------------------------------
|
||||||
// ReturnInst - Return a value (possibly void), from a function. Execution does
|
/// ReturnInst - Return a value (possibly void), from a function. Execution
|
||||||
// not continue in this function any longer.
|
/// does not continue in this function any longer.
|
||||||
//
|
///
|
||||||
class ReturnInst : public TerminatorInst {
|
class ReturnInst : public TerminatorInst {
|
||||||
ReturnInst(const ReturnInst &RI) : TerminatorInst(Instruction::Ret) {
|
ReturnInst(const ReturnInst &RI) : TerminatorInst(Instruction::Ret) {
|
||||||
if (RI.Operands.size()) {
|
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 {
|
class BranchInst : public TerminatorInst {
|
||||||
BranchInst(const BranchInst &BI);
|
BranchInst(const BranchInst &BI);
|
||||||
public:
|
public:
|
||||||
@ -153,8 +153,8 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
//===---------------------------------------------------------------------------
|
//===---------------------------------------------------------------------------
|
||||||
// SwitchInst - Multiway switch
|
/// SwitchInst - Multiway switch
|
||||||
//
|
///
|
||||||
class SwitchInst : public TerminatorInst {
|
class SwitchInst : public TerminatorInst {
|
||||||
// Operand[0] = Value to switch on
|
// Operand[0] = Value to switch on
|
||||||
// Operand[1] = Default basic block destination
|
// Operand[1] = Default basic block destination
|
||||||
@ -254,10 +254,9 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//===---------------------------------------------------------------------------
|
//===---------------------------------------------------------------------------
|
||||||
// InvokeInst - Invoke instruction
|
/// InvokeInst - Invoke instruction
|
||||||
//
|
///
|
||||||
class InvokeInst : public TerminatorInst {
|
class InvokeInst : public TerminatorInst {
|
||||||
InvokeInst(const InvokeInst &BI);
|
InvokeInst(const InvokeInst &BI);
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user