aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/optimize.c
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-02-18 22:21:20 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-02-24 10:49:15 +0100
commite22588735b2ed54a08d1b3fb593cc3a26afb320b (patch)
treeeabe76ccc942877e8d74749861410f314fc06e1f /optimize.c
parent6114de42604a7b8c8e98ae7e55a359622cfc8826 (diff)
downloadsparse-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/optimize.c b/optimize.c
index 8cf24351..317d7d4d 100644
--- a/optimize.c
+++ b/optimize.c
@@ -7,6 +7,7 @@
#include "optimize.h"
#include "linearize.h"
+#include "liveness.h"
#include "flow.h"