mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
AsmWriterOperand - fix uninitialized variable warning. NFCI.
This commit is contained in:
parent
20cfcdf6d9
commit
9604d663fd
@ -36,7 +36,7 @@ namespace llvm {
|
|||||||
|
|
||||||
/// MiOpNo - For isMachineInstrOperand, this is the operand number of the
|
/// MiOpNo - For isMachineInstrOperand, this is the operand number of the
|
||||||
/// machine instruction.
|
/// machine instruction.
|
||||||
unsigned MIOpNo;
|
unsigned MIOpNo = 0;
|
||||||
|
|
||||||
/// Str - For isLiteralTextOperand, this IS the literal text. For
|
/// Str - For isLiteralTextOperand, this IS the literal text. For
|
||||||
/// isMachineInstrOperand, this is the PrinterMethodName for the operand..
|
/// isMachineInstrOperand, this is the PrinterMethodName for the operand..
|
||||||
|
Loading…
Reference in New Issue
Block a user