Doxygen-ify comments, make function prototypes more consistent in format.

llvm-svn: 11259
This commit is contained in:
Misha Brukman 2004-02-10 16:39:05 +00:00
parent efae456cf5
commit 78292b3e66
1 changed files with 8 additions and 5 deletions

View File

@ -56,6 +56,9 @@ public:
// CallInst Class
//===----------------------------------------------------------------------===//
/// CallInst - This class represents a function call, abstracting a target
/// machine's calling convention.
///
class CallInst : public Instruction {
CallInst(const CallInst &CI);
public:
@ -64,9 +67,9 @@ public:
// Alternate CallInst ctors w/ no actuals & one actual, respectively.
CallInst(Value *F, const std::string &Name = "",
Instruction *InsertBefore = 0);
Instruction *InsertBefore = 0);
CallInst(Value *F, Value *Actual, const std::string& Name = "",
Instruction* InsertBefore = 0);
Instruction *InsertBefore = 0);
virtual Instruction *clone() const { return new CallInst(*this); }
bool mayWriteToMemory() const { return true; }
@ -95,8 +98,8 @@ public:
// ShiftInst Class
//===----------------------------------------------------------------------===//
// ShiftInst - This class represents left and right shift instructions.
//
/// ShiftInst - This class represents left and right shift instructions.
///
class ShiftInst : public Instruction {
ShiftInst(const ShiftInst &SI) : Instruction(SI.getType(), SI.getOpcode()) {
Operands.reserve(2);