Skip to content

Commit 84d460b

Browse files
committed
Auto merge of #1669 - RalfJung:rustup, r=RalfJung
rustup Cc rust-lang/rust#80907
2 parents f40a8f6 + 8e15f32 commit 84d460b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

rust-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8b002d5c3489a21db2c16e5af63cf5d234f6972c
1+
a2cd91ceb0f156cb442d75e12dc77c3d064cdde4

src/machine.rs

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use rustc_middle::{
2424
use rustc_span::symbol::{sym, Symbol};
2525
use rustc_span::def_id::DefId;
2626
use rustc_target::abi::{LayoutOf, Size};
27+
use rustc_target::spec::abi::Abi;
2728

2829
use crate::*;
2930

@@ -352,6 +353,7 @@ impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'mir, 'tcx> {
352353
fn find_mir_or_eval_fn(
353354
ecx: &mut InterpCx<'mir, 'tcx, Self>,
354355
instance: ty::Instance<'tcx>,
356+
_abi: Abi,
355357
args: &[OpTy<'tcx, Tag>],
356358
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
357359
unwind: Option<mir::BasicBlock>,
@@ -363,6 +365,7 @@ impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'mir, 'tcx> {
363365
fn call_extra_fn(
364366
ecx: &mut InterpCx<'mir, 'tcx, Self>,
365367
fn_val: Dlsym,
368+
_abi: Abi,
366369
args: &[OpTy<'tcx, Tag>],
367370
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
368371
_unwind: Option<mir::BasicBlock>,

0 commit comments

Comments
 (0)