We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f40a8f6 + 8e15f32 commit 84d460bCopy full SHA for 84d460b
rust-version
@@ -1 +1 @@
1
-8b002d5c3489a21db2c16e5af63cf5d234f6972c
+a2cd91ceb0f156cb442d75e12dc77c3d064cdde4
src/machine.rs
@@ -24,6 +24,7 @@ use rustc_middle::{
24
use rustc_span::symbol::{sym, Symbol};
25
use rustc_span::def_id::DefId;
26
use rustc_target::abi::{LayoutOf, Size};
27
+use rustc_target::spec::abi::Abi;
28
29
use crate::*;
30
@@ -352,6 +353,7 @@ impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'mir, 'tcx> {
352
353
fn find_mir_or_eval_fn(
354
ecx: &mut InterpCx<'mir, 'tcx, Self>,
355
instance: ty::Instance<'tcx>,
356
+ _abi: Abi,
357
args: &[OpTy<'tcx, Tag>],
358
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
359
unwind: Option<mir::BasicBlock>,
@@ -363,6 +365,7 @@ impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'mir, 'tcx> {
363
365
fn call_extra_fn(
364
366
367
fn_val: Dlsym,
368
369
370
371
_unwind: Option<mir::BasicBlock>,
0 commit comments