@@ -458,7 +458,7 @@ impl<'ctx, 'engine> Executor<'ctx, 'engine> {
458
458
/// - `{i32, i64}.load16_u`
459
459
/// - `i64.load32_s`
460
460
/// - `i64.load32_u`
461
- #[ inline( always ) ]
461
+ #[ inline]
462
462
fn execute_load_extend (
463
463
& mut self ,
464
464
offset : Offset ,
@@ -482,7 +482,7 @@ impl<'ctx, 'engine> Executor<'ctx, 'engine> {
482
482
/// - `{i32, i64}.store8`
483
483
/// - `{i32, i64}.store16`
484
484
/// - `i64.store32`
485
- #[ inline( always ) ]
485
+ #[ inline]
486
486
fn execute_store_wrap (
487
487
& mut self ,
488
488
offset : Offset ,
@@ -495,14 +495,14 @@ impl<'ctx, 'engine> Executor<'ctx, 'engine> {
495
495
}
496
496
497
497
/// Executes an infallible unary `wasmi` instruction.
498
- #[ inline( always ) ]
498
+ #[ inline]
499
499
fn execute_unary ( & mut self , f : fn ( UntypedValue ) -> UntypedValue ) {
500
500
self . sp . eval_top ( f) ;
501
501
self . next_instr ( )
502
502
}
503
503
504
504
/// Executes a fallible unary `wasmi` instruction.
505
- #[ inline( always ) ]
505
+ #[ inline]
506
506
fn try_execute_unary (
507
507
& mut self ,
508
508
f : fn ( UntypedValue ) -> Result < UntypedValue , TrapCode > ,
@@ -512,14 +512,14 @@ impl<'ctx, 'engine> Executor<'ctx, 'engine> {
512
512
}
513
513
514
514
/// Executes an infallible binary `wasmi` instruction.
515
- #[ inline( always ) ]
515
+ #[ inline]
516
516
fn execute_binary ( & mut self , f : fn ( UntypedValue , UntypedValue ) -> UntypedValue ) {
517
517
self . sp . eval_top2 ( f) ;
518
518
self . next_instr ( )
519
519
}
520
520
521
521
/// Executes a fallible binary `wasmi` instruction.
522
- #[ inline( always ) ]
522
+ #[ inline]
523
523
fn try_execute_binary (
524
524
& mut self ,
525
525
f : fn ( UntypedValue , UntypedValue ) -> Result < UntypedValue , TrapCode > ,
0 commit comments