Skip to content

Commit 401be3d

Browse files
author
git apple-llvm automerger
committed
Merge commit 'bf5ea876ef04' from llvm.org/main into next
2 parents 50dc7da + bf5ea87 commit 401be3d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/Analysis/LiveVariables.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ LiveVariablesImpl::merge(LiveVariables::LivenessValues valsA,
128128
}
129129

130130
bool LiveVariables::LivenessValues::equals(const LivenessValues &V) const {
131-
return liveExprs == V.liveExprs && liveDecls == V.liveDecls;
131+
return liveExprs == V.liveExprs && liveDecls == V.liveDecls &&
132+
liveBindings == V.liveBindings;
132133
}
133134

134135
//===----------------------------------------------------------------------===//

0 commit comments

Comments
 (0)