mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +00:00
Doxygen-ify comments, make function prototypes more consistent in format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -56,6 +56,9 @@ public:
|
|||||||
// CallInst Class
|
// CallInst Class
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
/// CallInst - This class represents a function call, abstracting a target
|
||||||
|
/// machine's calling convention.
|
||||||
|
///
|
||||||
class CallInst : public Instruction {
|
class CallInst : public Instruction {
|
||||||
CallInst(const CallInst &CI);
|
CallInst(const CallInst &CI);
|
||||||
public:
|
public:
|
||||||
@@ -95,8 +98,8 @@ public:
|
|||||||
// ShiftInst Class
|
// ShiftInst Class
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
// ShiftInst - This class represents left and right shift instructions.
|
/// ShiftInst - This class represents left and right shift instructions.
|
||||||
//
|
///
|
||||||
class ShiftInst : public Instruction {
|
class ShiftInst : public Instruction {
|
||||||
ShiftInst(const ShiftInst &SI) : Instruction(SI.getType(), SI.getOpcode()) {
|
ShiftInst(const ShiftInst &SI) : Instruction(SI.getType(), SI.getOpcode()) {
|
||||||
Operands.reserve(2);
|
Operands.reserve(2);
|
||||||
|
Reference in New Issue
Block a user