Skip to content

Commit 7b83a14

Browse files
committed
Fix uint greatetThan
1 parent 22068a8 commit 7b83a14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mono/mono/mini/mini-amd64.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3415,9 +3415,9 @@ simd_type_to_shl_op (int t)
34153415
case MONO_TYPE_I:
34163416
case MONO_TYPE_U:
34173417
#if TARGET_SIZEOF_VOID_P == 8
3418-
return OP_PSHLD;
3419-
#else
34203418
return OP_PSHLQ;
3419+
#else
3420+
return OP_PSHLD;
34213421
#endif
34223422
default:
34233423
g_assert_not_reached ();

0 commit comments

Comments
 (0)