mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
fixed a few minor issues with AST graphs
This commit is contained in:
parent
fe6006c300
commit
269ca50d33
3 changed files with 10 additions and 10 deletions
|
@ -77,7 +77,7 @@ public class GraphASTAndFlow extends GraphAST {
|
|||
}
|
||||
if (prev != null && map.containsKey(prev) && map.containsKey(next)) {
|
||||
AttributedEdge edge = createEdge(map.get(prev), map.get(next));
|
||||
edge.setEdgeType(TYPE_OUTPUT);
|
||||
edge.setEdgeType(WITHIN_BLOCK);
|
||||
}
|
||||
prev = next;
|
||||
}
|
||||
|
@ -92,7 +92,7 @@ public class GraphASTAndFlow extends GraphAST {
|
|||
PcodeBlock in = block.getIn(i);
|
||||
if (last.containsKey(in)) {
|
||||
AttributedEdge edge = createEdge(last.get(in), first.get(block));
|
||||
edge.setEdgeType(TYPE_INPUT);
|
||||
edge.setEdgeType(BETWEEN_BLOCK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue