mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
Update comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6785 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0e6094122a
commit
936f771e25
@ -14,8 +14,8 @@
|
|||||||
#include "llvm/InstrTypes.h"
|
#include "llvm/InstrTypes.h"
|
||||||
|
|
||||||
//===---------------------------------------------------------------------------
|
//===---------------------------------------------------------------------------
|
||||||
// ReturnInst - Return a value (possibly void), from a method. Execution does
|
// ReturnInst - Return a value (possibly void), from a function. Execution does
|
||||||
// not continue in this method any longer.
|
// 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) {
|
||||||
@ -194,7 +194,7 @@ public:
|
|||||||
class InvokeInst : public TerminatorInst {
|
class InvokeInst : public TerminatorInst {
|
||||||
InvokeInst(const InvokeInst &BI);
|
InvokeInst(const InvokeInst &BI);
|
||||||
public:
|
public:
|
||||||
InvokeInst(Value *Meth, BasicBlock *IfNormal, BasicBlock *IfException,
|
InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
|
||||||
const std::vector<Value*> &Params, const std::string &Name = "",
|
const std::vector<Value*> &Params, const std::string &Name = "",
|
||||||
Instruction *InsertBefore = 0);
|
Instruction *InsertBefore = 0);
|
||||||
|
|
||||||
@ -212,7 +212,7 @@ public:
|
|||||||
return dyn_cast<Function>(Operands[0].get());
|
return dyn_cast<Function>(Operands[0].get());
|
||||||
}
|
}
|
||||||
|
|
||||||
// getCalledValue - Get a pointer to a method that is invoked by this inst.
|
// getCalledValue - Get a pointer to a function that is invoked by this inst.
|
||||||
inline const Value *getCalledValue() const { return Operands[0]; }
|
inline const Value *getCalledValue() const { return Operands[0]; }
|
||||||
inline Value *getCalledValue() { return Operands[0]; }
|
inline Value *getCalledValue() { return Operands[0]; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user