mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-12 07:40:58 +00:00
Remove unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73815 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
66b4d3ba52
commit
e9fe6c7729
@ -45,7 +45,6 @@ STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
||||
namespace {
|
||||
class VISIBILITY_HIDDEN ARMAsmPrinter : public AsmPrinter {
|
||||
DwarfWriter *DW;
|
||||
MachineModuleInfo *MMI;
|
||||
|
||||
/// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
|
||||
/// make the right decision when printing asm code for different targets.
|
||||
@ -84,7 +83,7 @@ namespace {
|
||||
explicit ARMAsmPrinter(raw_ostream &O, TargetMachine &TM,
|
||||
const TargetAsmInfo *T, CodeGenOpt::Level OL,
|
||||
bool V)
|
||||
: AsmPrinter(O, TM, T, OL, V), DW(0), MMI(NULL), AFI(NULL), MCP(NULL),
|
||||
: AsmPrinter(O, TM, T, OL, V), DW(0), AFI(NULL), MCP(NULL),
|
||||
InCPMode(false) {
|
||||
Subtarget = &TM.getSubtarget<ARMSubtarget>();
|
||||
}
|
||||
|
@ -287,12 +287,11 @@ namespace {
|
||||
/// LinuxAsmPrinter - SPU assembly printer, customized for Linux
|
||||
class VISIBILITY_HIDDEN LinuxAsmPrinter : public SPUAsmPrinter {
|
||||
DwarfWriter *DW;
|
||||
MachineModuleInfo *MMI;
|
||||
public:
|
||||
explicit LinuxAsmPrinter(raw_ostream &O, SPUTargetMachine &TM,
|
||||
const TargetAsmInfo *T, CodeGenOpt::Level F,
|
||||
bool V)
|
||||
: SPUAsmPrinter(O, TM, T, F, V), DW(0), MMI(0) {}
|
||||
: SPUAsmPrinter(O, TM, T, F, V), DW(0) {}
|
||||
|
||||
virtual const char *getPassName() const {
|
||||
return "STI CBEA SPU Assembly Printer";
|
||||
|
Loading…
x
Reference in New Issue
Block a user