Added FunctionBuilder::{call_memcpy, call_memset, call_memmove}

This commit is contained in:
Aaron Power
2018-09-09 10:28:05 +01:00
parent 3e996c198f
commit 09f2b78b14
5 changed files with 153 additions and 3 deletions

View File

@@ -80,6 +80,9 @@ impl FaerieBuilder {
ir::LibCall::TruncF64 => "trunc".to_owned(),
ir::LibCall::NearestF32 => "nearbyintf".to_owned(),
ir::LibCall::NearestF64 => "nearbyint".to_owned(),
ir::LibCall::Memcpy => "memcpy".to_owned(),
ir::LibCall::Memset => "memset".to_owned(),
ir::LibCall::Memmove => "memmove".to_owned(),
})
}
}