aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-bfin.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-bfin.c')
-rw-r--r--target-bfin.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/target-bfin.c b/target-bfin.c
new file mode 100644
index 00000000..b84cd5de
--- /dev/null
+++ b/target-bfin.c
@@ -0,0 +1,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,
+};