Remove edges in constructor
This commit is contained in:
21
Project-02-03-04/mistraltests/after/square_cfg_after.dot
Normal file
21
Project-02-03-04/mistraltests/after/square_cfg_after.dot
Normal file
@@ -0,0 +1,21 @@
|
||||
digraph CFG {
|
||||
node [fontname="Helvetica"];
|
||||
n930 [label="START", shape=box];
|
||||
n930 -> n938;
|
||||
n938 [label="10", shape=box];
|
||||
n938 -> n939;
|
||||
n939 [label="CALL square", shape=box, style=filled, color=orange];
|
||||
n939 -> n932;
|
||||
n932 [label="START square(x)", shape=box, style=filled, color=green];
|
||||
n932 -> n935;
|
||||
n935 [label="x", shape=box];
|
||||
n935 -> n936;
|
||||
n936 [label="x", shape=box];
|
||||
n936 -> n937;
|
||||
n937 [label="x * x", shape=box];
|
||||
n937 -> n933;
|
||||
n933 [label="END square(x)", shape=box, style=filled, color=green];
|
||||
n933 -> n941;
|
||||
n941 [label="RET square", shape=box, style=filled, color=orange];
|
||||
n939 -> n941;
|
||||
}
|
||||
Reference in New Issue
Block a user