diff options
Diffstat (limited to 'llvm/lib/CodeGen/BranchRelaxation.cpp')
-rw-r--r-- | llvm/lib/CodeGen/BranchRelaxation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/BranchRelaxation.cpp b/llvm/lib/CodeGen/BranchRelaxation.cpp index 45c09a1..05494f1 100644 --- a/llvm/lib/CodeGen/BranchRelaxation.cpp +++ b/llvm/lib/CodeGen/BranchRelaxation.cpp @@ -81,9 +81,9 @@ class BranchRelaxation : public MachineFunctionPass { std::unique_ptr<RegScavenger> RS; LivePhysRegs LiveRegs; - MachineFunction *MF; - const TargetRegisterInfo *TRI; - const TargetInstrInfo *TII; + MachineFunction *MF = nullptr; + const TargetRegisterInfo *TRI = nullptr; + const TargetInstrInfo *TII = nullptr; bool relaxBranchInstructions(); void scanFunction(); |