diff options
| author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2018-02-18 22:21:20 +0100 |
|---|---|---|
| committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2018-02-24 10:49:15 +0100 |
| commit | e22588735b2ed54a08d1b3fb593cc3a26afb320b (patch) | |
| tree | eabe76ccc942877e8d74749861410f314fc06e1f /optimize.c | |
| parent | 6114de42604a7b8c8e98ae7e55a359622cfc8826 (diff) | |
| download | sparse-dev-e22588735b2ed54a08d1b3fb593cc3a26afb320b.tar.gz | |
move liveness interface to its own header
Currently, the interface for liveness analysis is declared
in the flow.h header file. There is no a real need to move
it to its own file but it's the dual of the previous patch
and help a bit to make the code structure clearer.
Move the prototype for liveness analysis to its own header.
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'optimize.c')
| -rw-r--r-- | optimize.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ #include "optimize.h" #include "linearize.h" +#include "liveness.h" #include "flow.h" |
