Files
revng-revng/lib/StackAnalysis/UsedReturnValuesOfFunctionCall.dot
T
Alessandro Di Federico 076aeac7f3 Move and rename all files
This commit moves around most files. The new directory structure is as
follows:

* `lib/$LIBRARY/`: contains a library, i.e., a set of `.cpp` files used
  by multiple libraries/tools.
* `include/revng/$LIBRARY/`: contains the public headers associated to
  the library in `lib/$LIBRARY/`.
* `tools/$TOOL/`: directory where all the `.cpp` files (and private
  headers) for a tool reside. Currently we have two tools: `revamb` and
  `revamb-dump`.

On top of this, all file names are now in camel case.
2018-10-03 23:11:12 +02:00

20 lines
385 B
Plaintext

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
digraph UsedReturnValuesOfFunctionCall {
Unknown;
Maybe [peripheries=2];
Yes;
# Lattice
Unknown->Maybe;
Maybe->Yes;
# Transfer functions
Maybe->Yes [label="Read"];
Maybe->Unknown [label="Write"];
Maybe->Unknown [label="UnknownFunctionCall"];
Maybe->Unknown [label="TheCall"];
}