Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Oct 18, 2018
1 parent 3cf0011 commit b6b7d7e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions silica/cfg/control_flow_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def visit_Name(self, node):
# print(problem.getSolution(), value, edge)
# print("===========")
if problem.getSolution():
print(edge)
# print(edge)
paths += [[(block)] + path for path in
self.find_paths(edge, initial_block, _conds)]
# for path in true_paths:
Expand Down Expand Up @@ -746,8 +746,6 @@ def remove_block(self, block):
if len(block.outgoing_edges) == 1:
sink, sink_label = list(block.outgoing_edges)[0]
add_edge(source, sink, source_label)
if isinstance(sink, BasicBlock):
sink.print_statements()
if source_label == "F":
source.false_edge = sink
elif source_label == "T":
Expand Down

0 comments on commit b6b7d7e

Please sign in to comment.