summaryrefslogtreecommitdiff
path: root/src/Grasp/Examples/call_ret.grasp
blob: a27286ee89ac56b46117b063064565c7b7e6595d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
digraph {
	1 [label="call"]
	2 [label="puts"]
	3 [label="grasp:main"]
	4 [label="myfunc"]
	5 [label="failure"]
	6 [label="set"]
	7 [label="success"]
	8 [label="ret"]

	1 -> 3 [label="name"]
	1 -> 2 [label="next"]
	1 -> 4 [label="func"]
	6 -> 4 [label="name"]
	6 -> 8 [label="next"]
	6 -> 7 [label="in"]
	2 -> 5 [label="in"]
	1 -> 5 [label="out"]
}