aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-s390.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-s390.c')
-rw-r--r--target-s390.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/target-s390.c b/target-s390.c
new file mode 100644
index 00000000..157779ce
--- /dev/null
+++ b/target-s390.c
@@ -0,0 +1,28 @@
+#include "symbol.h"
+#include "target.h"
+#include "machine.h"
+
+
+const struct target target_s390 = {
+ .mach = MACH_S390,
+ .bitness = ARCH_LP32,
+ .big_endian = 1,
+ .unsigned_char = 1,
+
+ .bits_in_longdouble = 64,
+ .max_fp_alignment = 8,
+
+ .target_64bit = &target_s390x,
+};
+
+const struct target target_s390x = {
+ .mach = MACH_S390X,
+ .bitness = ARCH_LP64,
+ .big_endian = 1,
+ .unsigned_char = 1,
+
+ .bits_in_longdouble = 64,
+ .max_fp_alignment = 8,
+
+ .target_32bit = &target_s390,
+};