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 dafed9f commit 8aedd63Copy full SHA for 8aedd63
rust/ql/lib/codeql/rust/dataflow/internal/SsaImpl.qll
@@ -340,6 +340,8 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu
340
341
Expr getARead(Definition def) { result = Cached::getARead(def) }
342
343
+ predicate ssaDefHasSource(WriteDefinition def) { none() } // handled in `DataFlowImpl.qll` instead
344
+
345
/** Holds if SSA definition `def` assigns `value` to the underlying variable. */
346
predicate ssaDefAssigns(WriteDefinition def, Expr value) {
347
none() // handled in `DataFlowImpl.qll` instead
0 commit comments