Skip to content

Commit e167017

Browse files
committed
Fix uninitialized variable warning. NFCI.
1 parent 29a5a6e commit e167017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/SystemZ/SystemZLongBranch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class SystemZLongBranch : public MachineFunctionPass {
162162
void relaxBranches();
163163

164164
const SystemZInstrInfo *TII = nullptr;
165-
MachineFunction *MF;
165+
MachineFunction *MF = nullptr;
166166
SmallVector<MBBInfo, 16> MBBs;
167167
SmallVector<TerminatorInfo, 16> Terminators;
168168
};

0 commit comments

Comments
 (0)