diff options
Diffstat (limited to 'llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp b/llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp index 36fad9e..ff0c5d5 100644 --- a/llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp +++ b/llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp @@ -197,8 +197,8 @@ public: explicit ComplexDeinterleavingGraph(const TargetLowering *tl) : TL(tl) {} private: - const TargetLowering *TL; - Instruction *RootValue; + const TargetLowering *TL = nullptr; + Instruction *RootValue = nullptr; NodePtr RootNode; SmallVector<NodePtr> CompositeNodes; SmallPtrSet<Instruction *, 16> AllInstructions; |