1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix uninitialized variable warning. NFCI.

This commit is contained in:
Simon Pilgrim 2019-11-13 14:39:19 +00:00
parent 3ae81a6740
commit fe2040c0e4

View File

@ -162,7 +162,7 @@ private:
void relaxBranches();
const SystemZInstrInfo *TII = nullptr;
MachineFunction *MF;
MachineFunction *MF = nullptr;
SmallVector<MBBInfo, 16> MBBs;
SmallVector<TerminatorInfo, 16> Terminators;
};