aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.h
blob: e21406798768f72ed7382f49ce42b0a3ffc476f4 (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 */