Skip to content

Commit 533d1f9

Browse files
committed
Revert "is this really wasm problem ?"
This reverts commit eb3319b.
1 parent eb3319b commit 533d1f9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -989,8 +989,6 @@ static void
989989
stackval_to_data_sign_ext (MonoType *type, stackval *val, void *data, gboolean pinvoke)
990990
{
991991
switch (type->type) {
992-
// Wasm problem ???
993-
#ifndef TARGET_WASM
994992
case MONO_TYPE_I1: {
995993
mono_i *p = (mono_i*)data;
996994
*p = (mono_i)((gint8)val->data.i);
@@ -1022,7 +1020,6 @@ stackval_to_data_sign_ext (MonoType *type, stackval *val, void *data, gboolean p
10221020
*p = (mono_u)((guint32)val->data.i);
10231021
break;
10241022
}
1025-
#endif
10261023
#endif
10271024
default:
10281025
stackval_to_data (type, val, data, pinvoke);

0 commit comments

Comments
 (0)