Added stub for new method in IntrinsicCallMethods

This commit is contained in:
Sylvester Hesp 2022-08-29 15:59:11 +02:00 committed by Eduard-Mihai Burtescu
parent e1aecffe67
commit 30a682d633

View File

@ -358,6 +358,15 @@ impl<'a, 'tcx> IntrinsicCallMethods<'tcx> for Builder<'a, 'tcx> {
todo!()
}
fn type_checked_load(
&mut self,
_llvtable: Self::Value,
_vtable_byte_offset: u64,
_typeid: Self::Value,
) -> Self::Value {
todo!()
}
fn va_start(&mut self, _val: Self::Value) -> Self::Value {
todo!()
}