aboutsummaryrefslogtreecommitdiff
path: root/src/llvm_backend_proc.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-11-08 12:24:00 +0000
committergingerBill <bill@gingerbill.org>2022-11-08 12:24:00 +0000
commita74093784cea3637b445657541cb7fff2f374f50 (patch)
tree191dc88360ed5e138de7d163ef13172eecce10e1 /src/llvm_backend_proc.cpp
parented58374964889db91b38fe95db409111819790ca (diff)
Add `intrinsics.map_cell_info` and `intrinsics.map_info`
Diffstat (limited to 'src/llvm_backend_proc.cpp')
-rw-r--r--src/llvm_backend_proc.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/llvm_backend_proc.cpp b/src/llvm_backend_proc.cpp
index 3881790e0..6d7d7eecb 100644
--- a/src/llvm_backend_proc.cpp
+++ b/src/llvm_backend_proc.cpp
@@ -2327,6 +2327,10 @@ lbValue lb_build_builtin_proc(lbProcedure *p, Ast *expr, TypeAndValue const &tv,
case BuiltinProc_type_map_info:
return lb_gen_map_info_ptr(p->module, ce->args[0]->tav.type);
+ case BuiltinProc_type_map_cell_info:
+ return lb_gen_map_cell_info_ptr(p->module, ce->args[0]->tav.type);
+
+
case BuiltinProc_fixed_point_mul:
case BuiltinProc_fixed_point_div:
case BuiltinProc_fixed_point_mul_sat: