Skip to content

Commit 48f465e

Browse files
committed
[SCEVPM] Fix default arg thinko
1 parent c20224a commit 48f465e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/Analysis/ScalarEvolutionPatternMatch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ template <typename Op0_t, typename Op1_t> struct SCEVAffineAddRec_match {
178178
Op1_t Op1;
179179
const Loop *L;
180180

181-
SCEVAffineAddRec_match(Op0_t Op0, Op1_t Op1, const Loop *L = nullptr)
181+
SCEVAffineAddRec_match(Op0_t Op0, Op1_t Op1, const Loop *L)
182182
: Op0(Op0), Op1(Op1), L(L) {}
183183

184184
bool match(const SCEV *S) const {

0 commit comments

Comments
 (0)