aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm.c')
-rw-r--r--target-arm.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/target-arm.c b/target-arm.c
new file mode 100644
index 00000000..f5af04ee
--- /dev/null
+++ b/target-arm.c
@@ -0,0 +1,16 @@
+#include "symbol.h"
+#include "target.h"
+#include "machine.h"
+
+
+const struct target target_arm = {
+ .mach = MACH_ARM,
+ .bitness = ARCH_LP32,
+ .big_endian = 0,
+ .unsigned_char = 1,
+
+ .wchar = &uint_ctype,
+
+ .bits_in_longdouble = 64,
+ .max_fp_alignment = 8,
+};