aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'target.h')
-rw-r--r--target.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/target.h b/target.h
index a89e21b6..1202c0be 100644
--- a/target.h
+++ b/target.h
@@ -54,6 +54,8 @@ extern int bits_in_enum;
extern int enum_alignment;
+struct builtin_fn;
+
struct target {
enum machine mach;
enum bitness bitness;
@@ -71,6 +73,8 @@ struct target {
const struct target *target_32bit;
const struct target *target_64bit;
+ const struct builtin_fn *builtins;
+
void (*init)(const struct target *self);
void (*predefine)(const struct target *self);
};