mie: implement instruction selection graph generation for binary ops and load/store
This commit is contained in:
13
mie/target/target.c
Normal file
13
mie/target/target.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <mie/target/target.h>
|
||||
|
||||
const struct mie_target_select_ops __mie_builtin_select_ops;
|
||||
|
||||
static const struct mie_target builtin_target = {
|
||||
.t_name = "Mie",
|
||||
.t_select = &__mie_builtin_select_ops,
|
||||
};
|
||||
|
||||
const struct mie_target *mie_target_builtin(void)
|
||||
{
|
||||
return &builtin_target;
|
||||
}
|
||||
Reference in New Issue
Block a user