1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +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
/// machine instruction.
unsigned MIOpNo;
unsigned MIOpNo = 0;
/// Str - For isLiteralTextOperand, this IS the literal text. For
/// isMachineInstrOperand, this is the PrinterMethodName for the operand..