llvm bindings

map the lowlevel op into LLVM code; it calls zig code, but the zig code does not do anything yet
This commit is contained in:
Folkert 2021-03-04 14:54:41 +01:00
parent 2e73e47673
commit baef33fc0c
5 changed files with 122 additions and 2 deletions

View file

@ -63,6 +63,7 @@ pub const DICT_WALK: &str = "roc_builtins.dict.walk";
pub const SET_FROM_LIST: &str = "roc_builtins.dict.set_from_list";
pub const LIST_MAP: &str = "roc_builtins.list.map";
pub const LIST_MAP2: &str = "roc_builtins.list.map2";
pub const LIST_MAP_WITH_INDEX: &str = "roc_builtins.list.map_with_index";
pub const LIST_KEEP_IF: &str = "roc_builtins.list.keep_if";
pub const LIST_KEEP_OKS: &str = "roc_builtins.list.keep_oks";