1
0
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:
Simon Pilgrim 2019-11-07 15:35:07 +00:00
parent 20cfcdf6d9
commit 9604d663fd

View File

@ -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..