@@ -6,7 +6,7 @@ use std::borrow::{Borrow, Cow};
6
6
use std:: fmt:: Debug ;
7
7
use std:: hash:: Hash ;
8
8
9
- use rustc_abi:: { Align , ExternAbi as CallAbi , Size } ;
9
+ use rustc_abi:: { Align , ExternAbi , Size } ;
10
10
use rustc_apfloat:: { Float , FloatConvert } ;
11
11
use rustc_ast:: { InlineAsmOptions , InlineAsmTemplatePiece } ;
12
12
use rustc_middle:: query:: TyCtxtAt ;
@@ -201,7 +201,7 @@ pub trait Machine<'tcx>: Sized {
201
201
fn find_mir_or_eval_fn (
202
202
ecx : & mut InterpCx < ' tcx , Self > ,
203
203
instance : ty:: Instance < ' tcx > ,
204
- abi : CallAbi ,
204
+ abi : ExternAbi ,
205
205
args : & [ FnArg < ' tcx , Self :: Provenance > ] ,
206
206
destination : & MPlaceTy < ' tcx , Self :: Provenance > ,
207
207
target : Option < mir:: BasicBlock > ,
@@ -213,7 +213,7 @@ pub trait Machine<'tcx>: Sized {
213
213
fn call_extra_fn (
214
214
ecx : & mut InterpCx < ' tcx , Self > ,
215
215
fn_val : Self :: ExtraFnVal ,
216
- abi : CallAbi ,
216
+ abi : ExternAbi ,
217
217
args : & [ FnArg < ' tcx , Self :: Provenance > ] ,
218
218
destination : & MPlaceTy < ' tcx , Self :: Provenance > ,
219
219
target : Option < mir:: BasicBlock > ,
@@ -652,7 +652,7 @@ pub macro compile_time_machine(<$tcx: lifetime>) {
652
652
fn call_extra_fn (
653
653
_ecx : & mut InterpCx < $tcx, Self > ,
654
654
fn_val : !,
655
- _abi : CallAbi ,
655
+ _abi : ExternAbi ,
656
656
_args : & [ FnArg < $tcx> ] ,
657
657
_destination : & MPlaceTy < $tcx, Self :: Provenance > ,
658
658
_target : Option < mir:: BasicBlock > ,
0 commit comments