Enable multi-value handling in Singlepass compiler

This commit is contained in:
ptitSeb
2022-06-16 11:12:52 +02:00
parent 75a98ab171
commit 02be85f610
2 changed files with 0 additions and 7 deletions

View File

@ -89,9 +89,6 @@ impl Compiler for SinglepassCompiler {
}
_ => None,
};
if compile_info.features.multi_value {
return Err(CompileError::UnsupportedFeature("multivalue".to_string()));
}
let calling_convention = match target.triple().default_calling_convention() {
Ok(CallingConvention::WindowsFastcall) => CallingConvention::WindowsFastcall,
Ok(CallingConvention::SystemV) => CallingConvention::SystemV,