[qfcc] Remove obsolete structure fields

init_vars hasn't been used for a long time.
This commit is contained in:
Bill Currie 2020-03-08 03:33:01 +09:00
parent e524db1fc1
commit 2b15e61b28

View file

@ -84,12 +84,6 @@ typedef struct flownode_s {
struct set_s *in;
struct set_s *out;
} live_vars;
struct {
struct set_s *use;
struct set_s *def;
struct set_s *in;
struct set_s *out;
} init_vars;
struct sblock_s *sblock; ///< original statement block
struct dag_s *dag; ///< dag for this node
} flownode_t;