File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,11 +87,11 @@ void AbstractExecution::bufOverflowDetection(const SVF::SVFStmt* stmt) {
87
87
// / TODO : Implement the handleCycleWTO function
88
88
void AbstractExecution::handleCycleWTO (const ICFGCycleWTO* cycle) {
89
89
// Get execution states from in edges
90
- bool is_feasible = mergeStatesFromPredecessors (cycle->head ()->node (), preAbsTrace[cycle->head ()->node ()]);
90
+ bool is_feasible = mergeStatesFromPredecessors (cycle->head ()->getICFGNode (), preAbsTrace[cycle->head ()->getICFGNode ()]);
91
91
if (!is_feasible) {
92
92
return ;
93
93
} else {
94
- AEState pre_as = preAbsTrace[cycle->head ()->node ()];
94
+ AEState pre_as = preAbsTrace[cycle->head ()->getICFGNode ()];
95
95
// set -widen-delay
96
96
s32_t widen_delay = Options::WidenDelay ();
97
97
bool increasing = true ;
@@ -339,7 +339,7 @@ void AbstractExecution::handleWTOComponents(const std::list<const ICFGWTOComp*>&
339
339
* @param node The WTO node to be processed
340
340
*/
341
341
void AbstractExecution::handleSingletonWTO (const ICFGSingletonWTO* singletonWTO) {
342
- const ICFGNode* node = singletonWTO->node ();
342
+ const ICFGNode* node = singletonWTO->getICFGNode ();
343
343
// Propagate the states from predecessors to the current node and return true if the control-flow is feasible
344
344
bool is_feasible = mergeStatesFromPredecessors (node, preAbsTrace[node]);
345
345
if (is_feasible) {
You can’t perform that action at this time.
0 commit comments