forked from OSchip/llvm-project
De-virtualize a method since it doesn't override anything and isn't overridden itself.
llvm-svn: 203440
This commit is contained in:
parent
ca7e3e5c4b
commit
d25ff6f917
|
@ -483,7 +483,7 @@ public:
|
||||||
MCELFStreamer::EmitInstruction(Inst, STI);
|
MCELFStreamer::EmitInstruction(Inst, STI);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void emitInst(uint32_t Inst, char Suffix) {
|
void emitInst(uint32_t Inst, char Suffix) {
|
||||||
unsigned Size;
|
unsigned Size;
|
||||||
char Buffer[4];
|
char Buffer[4];
|
||||||
const bool LittleEndian = getContext().getAsmInfo()->isLittleEndian();
|
const bool LittleEndian = getContext().getAsmInfo()->isLittleEndian();
|
||||||
|
|
Loading…
Reference in New Issue