winebuild: Use the lretw mnemonic in wine_call_to_16().

We already use it in the __wine_spec_callfrom16_* functions.
This commit is contained in:
Zebediah Figura 2023-05-18 01:02:00 -05:00 committed by Alexandre Julliard
parent 63a6f01a70
commit 6bcfab4ca6

View file

@ -519,8 +519,7 @@ static void BuildCallTo16Core( int reg_func )
} }
/* Jump to the called routine */ /* Jump to the called routine */
output( "\t.byte 0x66\n" ); output( "\tlretw\n" );
output( "\tlret\n" );
/* Function footer */ /* Function footer */
output_function_size( func_name ); output_function_size( func_name );