forked from OSchip/llvm-project
[TableGen] Stop passing by reference an integer that doesn't get modified. NFC
llvm-svn: 260934
This commit is contained in:
parent
b89d189d37
commit
983be941bf
|
@ -476,7 +476,7 @@ void RecognizableInstr::adjustOperandEncoding(OperandEncoding &encoding) {
|
|||
|
||||
void RecognizableInstr::handleOperand(bool optional, unsigned &operandIndex,
|
||||
unsigned &physicalOperandIndex,
|
||||
unsigned &numPhysicalOperands,
|
||||
unsigned numPhysicalOperands,
|
||||
const unsigned *operandMapping,
|
||||
OperandEncoding (*encodingFromString)
|
||||
(const std::string&,
|
||||
|
|
|
@ -177,7 +177,7 @@ private:
|
|||
void handleOperand(bool optional,
|
||||
unsigned &operandIndex,
|
||||
unsigned &physicalOperandIndex,
|
||||
unsigned &numPhysicalOperands,
|
||||
unsigned numPhysicalOperands,
|
||||
const unsigned *operandMapping,
|
||||
OperandEncoding (*encodingFromString)
|
||||
(const std::string&,
|
||||
|
|
Loading…
Reference in New Issue