forked from OSchip/llvm-project
R600/SIMCCodeEmitter.cpp: Prune a couple of unused members, STI and Ctx. [-Wunused-private-field]
llvm-svn: 178065
This commit is contained in:
parent
cd4a9fd301
commit
3234178bf9
|
@ -39,8 +39,6 @@ class SIMCCodeEmitter : public AMDGPUMCCodeEmitter {
|
|||
void operator=(const SIMCCodeEmitter &) LLVM_DELETED_FUNCTION;
|
||||
const MCInstrInfo &MCII;
|
||||
const MCRegisterInfo &MRI;
|
||||
const MCSubtargetInfo &STI;
|
||||
MCContext &Ctx;
|
||||
|
||||
/// \brief Can this operand also contain immediate values?
|
||||
bool isSrcOperand(const MCInstrDesc &Desc, unsigned OpNo) const;
|
||||
|
@ -51,7 +49,7 @@ class SIMCCodeEmitter : public AMDGPUMCCodeEmitter {
|
|||
public:
|
||||
SIMCCodeEmitter(const MCInstrInfo &mcii, const MCRegisterInfo &mri,
|
||||
const MCSubtargetInfo &sti, MCContext &ctx)
|
||||
: MCII(mcii), MRI(mri), STI(sti), Ctx(ctx) { }
|
||||
: MCII(mcii), MRI(mri) { }
|
||||
|
||||
~SIMCCodeEmitter() { }
|
||||
|
||||
|
|
Loading…
Reference in New Issue