mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94232 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -21,69 +21,58 @@
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
class AsmPrinter;
|
||||
class MachineFunction;
|
||||
class MachineModuleInfo;
|
||||
class Module;
|
||||
class MCAsmInfo;
|
||||
class TargetData;
|
||||
class TargetRegisterInfo;
|
||||
class MCSymbol;
|
||||
class AsmPrinter;
|
||||
class MachineFunction;
|
||||
class MachineModuleInfo;
|
||||
class Module;
|
||||
class MCAsmInfo;
|
||||
class TargetData;
|
||||
class TargetRegisterInfo;
|
||||
class MCSymbol;
|
||||
|
||||
class Dwarf {
|
||||
protected:
|
||||
class Dwarf {
|
||||
protected:
|
||||
//===-------------------------------------------------------------==---===//
|
||||
// Core attributes used by the DWARF printer.
|
||||
//
|
||||
|
||||
/// O - Stream to .s file.
|
||||
///
|
||||
raw_ostream &O;
|
||||
|
||||
/// Asm - Target of Dwarf emission.
|
||||
///
|
||||
AsmPrinter *Asm;
|
||||
|
||||
/// MAI - Target asm information.
|
||||
///
|
||||
const MCAsmInfo *MAI;
|
||||
|
||||
/// TD - Target data.
|
||||
///
|
||||
const TargetData *TD;
|
||||
|
||||
/// RI - Register Information.
|
||||
///
|
||||
const TargetRegisterInfo *RI;
|
||||
|
||||
/// M - Current module.
|
||||
///
|
||||
Module *M;
|
||||
|
||||
/// MF - Current machine function.
|
||||
///
|
||||
MachineFunction *MF;
|
||||
|
||||
/// MMI - Collected machine module information.
|
||||
///
|
||||
MachineModuleInfo *MMI;
|
||||
|
||||
/// SubprogramCount - The running count of functions being compiled.
|
||||
///
|
||||
unsigned SubprogramCount;
|
||||
|
||||
/// Flavor - A unique string indicating what dwarf producer this is, used to
|
||||
/// unique labels.
|
||||
///
|
||||
const char * const Flavor;
|
||||
|
||||
/// SetCounter - A unique number for each '.set' directive.
|
||||
///
|
||||
unsigned SetCounter;
|
||||
|
||||
Dwarf(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T,
|
||||
const char *flavor);
|
||||
public:
|
||||
public:
|
||||
//===------------------------------------------------------------------===//
|
||||
// Accessors.
|
||||
//
|
||||
|
Reference in New Issue
Block a user