We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80cd97 commit 81b3035Copy full SHA for 81b3035
shared/ssa/codeql/ssa/Ssa.qll
@@ -376,7 +376,10 @@ module Make<LocationSig Location, InputSig<Location> Input> {
376
variableRead(bb, i, v, _) and
377
k = SsaActualRead()
378
or
379
- any(DefinitionExt def).definesAt(v, bb, i, k)
+ any(Definition def).definesAt(v, bb, i) and
380
+ k = SsaDef()
381
+ or
382
+ synthPhiRead(bb, v) and i = -1 and k = SsaPhiRead()
383
}
384
385
/**
0 commit comments