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


static void init_arm64(const struct target *self)
{
	if (arch_cmodel == CMODEL_UNKNOWN)
		arch_cmodel = CMODEL_SMALL;
}

const struct target target_arm64 = {
	.mach = MACH_ARM64,
	.bitness = ARCH_LP64,

	.big_endian = 0,
	.unsigned_char = 1,

	.wchar = &uint_ctype,

	.init = init_arm64,
};