repo.or.cz
/
mcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Used Variables instead of Options, in SConstruct
[mcc.git]
/
cc.h
blob
3b834db43f0c081899f9f2f57f44dd622a193c58
1
#ifndef MCC_CC_H
2
#define MCC_CC_H
3
4
struct
cc
;
5
6
#include
"scanner.h"
7
#include
"stree.h"
8
9
struct
cc
{
10
struct
lexer lex
;
11
struct
stree
*
stree
;
12
struct
stree
*
scope
;
13
struct
stree
*
switch_scope
;
// innermost switch statement
14
};
15
16
#endif
17