aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.h
blob: fe0b08bb039342456eb01acd4a6186e07ecae0f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ORYX_CODEGEN_H
#define ORYX_CODEGEN_H

#include <gmp.h>

#include "analyzer.h"
#include "lexer.h"
#include "parser.h"

void codegen(const char *, bitset_t *, fold_t *, scope_t *, type_t **, ast_t,
             aux_t, lexemes_t)
	__attribute__((nonnull));

#endif /* !ORYX_CODEGEN_H */