C++: Remove yet another DefinitionExt reference.

This commit is contained in:
Mathias Vorreiter Pedersen
2025-03-13 17:13:30 +00:00
committed by Anders Schack-Mulligen
parent 35687ea698
commit 90774c03be

View File

@@ -364,10 +364,10 @@ class Node extends TIRDataFlowNode {
* pointed to by `p`.
*/
Expr asDefinition(boolean uncertain) {
exists(StoreInstruction store, Ssa::DefinitionExt def |
exists(StoreInstruction store, Ssa::Definition def |
store = this.asInstruction() and
result = asDefinitionImpl(store) and
Ssa::defToNode(this, def, _, _, _, _) and
Ssa::defToNode(this, def, _) and
if def.isCertain() then uncertain = false else uncertain = true
)
}