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 @@ -535,7 +535,7 @@ void dep_graph_domaint::output(
535
535
if (!control_deps.empty () || it!=control_dep_calls.begin ())
536
536
out << " ," ;
537
537
538
- out << (*it)->location_number << " [CALL ]" ;
538
+ out << (*it)->location_number << " [UNCONDITIONAL ]" ;
539
539
}
540
540
541
541
out << " \n " ;
@@ -602,7 +602,7 @@ jsont dep_graph_domaint::output_json(
602
602
json_numbert (std::to_string (target->location_number ));
603
603
link[" sourceLocation" ]=json (target->source_location );
604
604
link[" type" ]=json_stringt (" control" );
605
- link[" branch" ]=json_stringt (" CALL " );
605
+ link[" branch" ]=json_stringt (" UNCONDITIONAL " );
606
606
}
607
607
608
608
for (const auto &dd : data_deps)
@@ -657,7 +657,7 @@ jsont dep_graph_domaint::output_json_additional(
657
657
json_numbert (std::to_string (target->location_number ));
658
658
link[" sourceLocation" ]=json (target->source_location );
659
659
link[" type" ]=json_stringt (" control" );
660
- link[" branch" ]=json_stringt (" CALL " );
660
+ link[" branch" ]=json_stringt (" UNCONDITIONAL " );
661
661
}
662
662
663
663
for (const auto &dd : base_state.data_deps )
You can’t perform that action at this time.
0 commit comments