We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 47b1c3d + dbd99df commit e6cf737Copy full SHA for e6cf737
csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll
@@ -175,10 +175,9 @@ module PreSsa {
175
}
176
177
final AssignableRead getAFirstRead() {
178
- exists(SsaInput::BasicBlock bb1, int i1, SsaInput::BasicBlock bb2, int i2 |
179
- this.definesAt(_, bb1, i1) and
180
- SsaImpl::adjacentDefRead(this, bb1, i1, bb2, i2) and
181
- result = bb2.getElement(i2)
+ exists(SsaInput::BasicBlock bb, int i |
+ SsaImpl::firstUse(this, bb, i, true) and
+ result = bb.getElement(i)
182
)
183
184
@@ -216,8 +215,7 @@ module PreSsa {
216
215
predicate adjacentReadPairSameVar(AssignableRead read1, AssignableRead read2) {
217
exists(SsaInput::BasicBlock bb1, int i1, SsaInput::BasicBlock bb2, int i2 |
218
read1 = bb1.getElement(i1) and
219
- SsaInput::variableRead(bb1, i1, _, true) and
220
- SsaImpl::adjacentDefRead(_, bb1, i1, bb2, i2) and
+ SsaImpl::adjacentUseUse(bb1, i1, bb2, i2, _, true) and
221
read2 = bb2.getElement(i2)
222
223
0 commit comments