diff options
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp index c2affaf..810cbbd 100644 --- a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp +++ b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp @@ -281,8 +281,7 @@ class CHRScope { private: CHRScope(ArrayRef<RegInfo> RegInfosIn, ArrayRef<CHRScope *> SubsIn) - : RegInfos(RegInfosIn.begin(), RegInfosIn.end()), - Subs(SubsIn.begin(), SubsIn.end()), BranchInsertPoint(nullptr) {} + : RegInfos(RegInfosIn), Subs(SubsIn), BranchInsertPoint(nullptr) {} }; class CHR { |