forked from OSchip/llvm-project
[X86] Remove unnecessary defaulted argument from function in X86FoldTablesEmitter.cpp. NFC
Nothing ever calls it with anything other than the default value. So just delete it and the code that handled the non-default value.
This commit is contained in:
parent
98797a5fc0
commit
8f7b6a904f
|
@ -225,14 +225,8 @@ static inline unsigned int getRegOperandSize(const Record *RegRec) {
|
|||
}
|
||||
|
||||
// Return the size of the memory operand
|
||||
static inline unsigned int
|
||||
getMemOperandSize(const Record *MemRec, const bool IntrinsicSensitive = false) {
|
||||
static inline unsigned getMemOperandSize(const Record *MemRec) {
|
||||
if (MemRec->isSubClassOf("Operand")) {
|
||||
// Intrinsic memory instructions use ssmem/sdmem.
|
||||
if (IntrinsicSensitive &&
|
||||
(MemRec->getName() == "sdmem" || MemRec->getName() == "ssmem"))
|
||||
return 128;
|
||||
|
||||
StringRef Name =
|
||||
MemRec->getValueAsDef("ParserMatchClass")->getValueAsString("Name");
|
||||
if (Name == "Mem8")
|
||||
|
|
Loading…
Reference in New Issue