Java: Skip SSA definition nodes in data flow.

This commit is contained in:
Anders Schack-Mulligen
2025-03-14 14:58:08 +01:00
parent 5aa7029934
commit 7c82f51381

View File

@@ -684,6 +684,8 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu
predicate guardControlsBlock(Guard guard, BasicBlock bb, boolean branch) {
guard.controls(bb, branch)
}
predicate includeWriteDefsInFlowStep() { none() }
}
private module DataFlowIntegrationImpl = Impl::DataFlowIntegration<DataFlowIntegrationInput>;