Add builtins/bitcode/

This commit is contained in:
Richard Feldman 2020-03-31 21:15:13 -04:00
parent cc555dd880
commit 081de1b4bc
7 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,4 @@
#[no_mangle]
pub fn i64_to_f64_(num: i64) -> f64 {
num as f64
}