aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.h
blob: 338ade425a50a3c7918456cd84a1d9814eb77b23 (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 *, mpq_t *, scope_t *, type_t *, ast_t, aux_t,
             lexemes_t)
	__attribute__((nonnull));

#endif /* !ORYX_CODEGEN_H */