aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm.c')
-rw-r--r--target-arm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/target-arm.c b/target-arm.c
index 5fc15c51..104c319b 100644
--- a/target-arm.c
+++ b/target-arm.c
@@ -5,9 +5,16 @@
static void init_arm(const struct target *self)
{
+ fast16_ctype = &int_ctype;
+ ufast16_ctype = &uint_ctype;
+ fast32_ctype = &int_ctype;
+ ufast32_ctype = &uint_ctype;
+
if (arch_os == OS_NONE) {
int32_ctype = &long_ctype;
uint32_ctype = &ulong_ctype;
+ fast8_ctype = &int_ctype;
+ ufast8_ctype = &uint_ctype;
}
}