Clean binaries

This commit is contained in:
Yohann D'ANELLO 2020-11-28 19:14:32 +01:00
parent 3fe11684d3
commit a63419d4cf
22 changed files with 58 additions and 5533 deletions

BIN
clex.cmi

Binary file not shown.

BIN
clex.cmo

Binary file not shown.

3859
clex.ml

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
ctab.cmi

Binary file not shown.

BIN
ctab.cmo

Binary file not shown.

1570
ctab.ml

File diff suppressed because it is too large Load Diff

View File

@ -1,88 +0,0 @@
type token =
| IDENTIFIER of (string)
| TYPE_NAME of (string)
| CONSTANT of (int)
| STRING_LITERAL of (string)
| SIZEOF
| PTR_OP
| INC_OP
| DEC_OP
| LEFT_OP
| RIGHT_OP
| LE_OP
| GE_OP
| EQ_OP
| NE_OP
| AND_OP
| OR_OP
| MUL_ASSIGN
| DIV_ASSIGN
| MOD_ASSIGN
| ADD_ASSIGN
| SUB_ASSIGN
| LEFT_ASSIGN
| RIGHT_ASSIGN
| AND_ASSIGN
| XOR_ASSIGN
| OR_ASSIGN
| SEMI_CHR
| OPEN_BRACE_CHR
| CLOSE_BRACE_CHR
| COMMA_CHR
| COLON_CHR
| EQ_CHR
| OPEN_PAREN_CHR
| CLOSE_PAREN_CHR
| OPEN_BRACKET_CHR
| CLOSE_BRACKET_CHR
| DOT_CHR
| AND_CHR
| OR_CHR
| XOR_CHR
| BANG_CHR
| TILDE_CHR
| ADD_CHR
| SUB_CHR
| STAR_CHR
| DIV_CHR
| MOD_CHR
| OPEN_ANGLE_CHR
| CLOSE_ANGLE_CHR
| QUES_CHR
| TYPEDEF
| EXTERN
| STATIC
| AUTO
| REGISTER
| CHAR
| SHORT
| INTEGER
| LONG
| SIGNED
| UNSIGNED
| FLOATING
| DOUBLE
| CONST
| VOLATILE
| VOID
| STRUCT
| UNION
| ENUM
| ELLIPSIS
| EOF
| CASE
| DEFAULT
| IF
| ELSE
| SWITCH
| WHILE
| DO
| FOR
| GOTO
| CONTINUE
| BREAK
| RETURN
| ASM
val translation_unit :
(Lexing.lexbuf -> token) -> Lexing.lexbuf -> (Cparse.var_declaration list)

74
depend
View File

@ -1,24 +1,66 @@
compile.cmi : cparse.cmi
cparse.cmi : error.cmo
cprint.cmi : cparse.cmi
ctab.cmi : cparse.cmi
clex.cmo : error.cmo ctab.cmi cparse.cmi
clex.cmx : error.cmx ctab.cmx cparse.cmx
compile.cmo : genlab.cmo cparse.cmi compile.cmi
compile.cmx : genlab.cmx cparse.cmx compile.cmi
cparse.cmo : error.cmo cparse.cmi
cparse.cmx : error.cmx cparse.cmi
cprint.cmo : cparse.cmi cprint.cmi
cprint.cmx : cparse.cmx cprint.cmi
ctab.cmo : error.cmo cparse.cmi ctab.cmi
ctab.cmx : error.cmx cparse.cmx ctab.cmi
clex.cmo : \
error.cmo \
ctab.cmi \
cparse.cmi
clex.cmx : \
error.cmx \
ctab.cmx \
cparse.cmx
compile.cmo : \
genlab.cmo \
cparse.cmi \
compile.cmi
compile.cmx : \
genlab.cmx \
cparse.cmx \
compile.cmi
compile.cmi : \
cparse.cmi
cparse.cmo : \
error.cmo \
cparse.cmi
cparse.cmx : \
error.cmx \
cparse.cmi
cparse.cmi : \
error.cmo
cprint.cmo : \
cparse.cmi \
cprint.cmi
cprint.cmx : \
cparse.cmx \
cprint.cmi
cprint.cmi : \
cparse.cmi
ctab.cmo : \
error.cmo \
cparse.cmi \
ctab.cmi
ctab.cmx : \
error.cmx \
cparse.cmx \
ctab.cmi
ctab.cmi : \
cparse.cmi
error.cmo :
error.cmx :
genlab.cmo :
genlab.cmx :
main.cmo : verbose.cmo error.cmo ctab.cmi cprint.cmi cparse.cmi compile.cmi \
main.cmo : \
verbose.cmo \
error.cmo \
ctab.cmi \
cprint.cmi \
cparse.cmi \
compile.cmi \
clex.cmo
main.cmx : verbose.cmx error.cmx ctab.cmx cprint.cmx cparse.cmx compile.cmx \
main.cmx : \
verbose.cmx \
error.cmx \
ctab.cmx \
cprint.cmx \
cparse.cmx \
compile.cmx \
clex.cmx
verbose.cmo :
verbose.cmx :

BIN
error.cmi

Binary file not shown.

BIN
error.cmo

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
main.cmi

Binary file not shown.

BIN
main.cmo

Binary file not shown.

Binary file not shown.

Binary file not shown.