summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'instr-scripts')
-rw-r--r--instr-scripts/process_internals.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/instr-scripts/process_internals.py b/instr-scripts/process_internals.py
index fbbf04e..c7d4e82 100644
--- a/instr-scripts/process_internals.py
+++ b/instr-scripts/process_internals.py
@@ -530,17 +530,18 @@ class Process_Internals:
[]
)
- false_branch_xml = xml.find("./else_cause/sequential_statement_chain")
-
- if (false_branch_xml == None):
- exit_points += prev_nodes
- else:
- exit_points += self.handle_sequential_statement_chain (
- false_branch_xml,
- [cond_node_id],
- (node_depth + 2),
- ["COND_WAS_FALSE"]
- )
+ # Re-reading this, I doubt this is ever found. Copy/paste mistake?
+# false_branch_xml = xml.find("./else_cause/sequential_statement_chain")
+#
+# if (false_branch_xml == None):
+# exit_points += prev_nodes
+# else:
+# exit_points += self.handle_sequential_statement_chain (
+# false_branch_xml,
+# [cond_node_id],
+# (node_depth + 2),
+# ["COND_WAS_FALSE"]
+# )
return exit_points