1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Clarify documentation and use correct doxygen comment form /// vs. // .

Thanks to Vladimir Prus for corrections.

llvm-svn: 14009
This commit is contained in:
Misha Brukman 2004-06-04 14:51:25 +00:00
parent 2d2dcb392a
commit d608ac24d7

View File

@ -132,16 +132,19 @@ public:
/// ///
void dump() const; void dump() const;
// The next three methods are used to construct, destruct, and retrieve the /// construct - Allocate and initialize a MachineFunction for a given Function
// MachineFunction object for the given method. /// and Target
// ///
// construct() -- Allocates and initializes for a given method and target
// get() -- Returns a handle to the object.
// This should not be called before "construct()"
// for a given Method.
//
static MachineFunction& construct(const Function *F, const TargetMachine &TM); static MachineFunction& construct(const Function *F, const TargetMachine &TM);
/// destruct - Destroy the MachineFunction corresponding to a given Function
///
static void destruct(const Function *F); static void destruct(const Function *F);
/// get - Return a handle to a MachineFunction corresponding to the given
/// Function. This should not be called before "construct()" for a given
/// Function.
///
static MachineFunction& get(const Function *F); static MachineFunction& get(const Function *F);
// Provide accessors for the MachineBasicBlock list... // Provide accessors for the MachineBasicBlock list...