Skip to content

Commit bdccecf

Browse files
committed
fix things
1 parent ae56449 commit bdccecf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mono/mono/mini/interp/transform.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2188,7 +2188,6 @@ interp_handle_intrinsics (TransformData *td, MonoMethod *target_method, MonoClas
21882188
return FALSE;
21892189
}
21902190

2191-
MonoClass *tfrom_klass = mono_class_from_mono_type_internal (tfrom);
21922191
MonoClass *tto_klass = mono_class_from_mono_type_internal (tto);
21932192

21942193
// The same applies for when the type sizes do not match, as this will always throw
@@ -2214,7 +2213,7 @@ interp_handle_intrinsics (TransformData *td, MonoMethod *target_method, MonoClas
22142213

22152214
if (mov_op == MINT_MOV_VT ) {
22162215
if (size <= 4) {
2217-
*op = MINT_MOV_4;
2216+
*op = MINT_MOV_4;
22182217
} else if (size <= 8) {
22192218
*op = MINT_MOV_8;
22202219
} else {

0 commit comments

Comments
 (0)