aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-bfin.c
blob: b84cd5de8d5418a05d766e43973483092bad138f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "symbol.h"
#include "target.h"
#include "machine.h"
#include "builtin.h"


static void predefine_bfin(const struct target *self)
{
	predefine("__BFIN__", 1, "1");
	predefine("__bfin__", 1, "1");
}

static const struct builtin_fn builtins_bfin[] = {
	{ "__builtin_bfin_csync", &void_ctype, 0 },
	{ "__builtin_bfin_ssync", &void_ctype, 0 },
	{ "__builtin_bfin_norm_fr1x32", &int_ctype, 0, { &int_ctype }},
	{ }
};

const struct target target_bfin = {
	.mach = MACH_BFIN,
	.bitness = ARCH_LP32,

	.predefine = predefine_bfin,
	.builtins = builtins_bfin,
};