cleanup
This commit is contained in:
parent
e7a2a8f0a4
commit
b12be97194
|
@ -15,6 +15,10 @@
|
||||||
# error enable PIC_NONE_IS_FALSE
|
# error enable PIC_NONE_IS_FALSE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* scope object
|
||||||
|
*/
|
||||||
|
|
||||||
typedef struct analyze_scope {
|
typedef struct analyze_scope {
|
||||||
int depth;
|
int depth;
|
||||||
bool varg;
|
bool varg;
|
||||||
|
@ -22,6 +26,10 @@ typedef struct analyze_scope {
|
||||||
struct analyze_scope *up;
|
struct analyze_scope *up;
|
||||||
} analyze_scope;
|
} analyze_scope;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* global analyzer state
|
||||||
|
*/
|
||||||
|
|
||||||
typedef struct analyze_state {
|
typedef struct analyze_state {
|
||||||
pic_state *pic;
|
pic_state *pic;
|
||||||
analyze_scope *scope;
|
analyze_scope *scope;
|
||||||
|
|
Loading…
Reference in New Issue