Commit 785c9a3b authored by Milad Fa's avatar Milad Fa Committed by Commit Bot

S390: Use unsigned int when simulating vector pack

Change-Id: I33cbca84ef65c7e93a0c942aabc881648d58ca3a
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2607489Reviewed-by: 's avatarJunliang Yan <junyan@redhat.com>
Commit-Queue: Milad Fa <mfarazma@redhat.com>
Cr-Commit-Position: refs/heads/master@{#71928}
parent 6f054b36
......@@ -3350,9 +3350,9 @@ EVALUATE(VPK) {
USE(m6);
USE(m5);
switch (m4) {
CASE(1, int16_t, int8_t, false, 0, 0);
CASE(2, int32_t, int16_t, false, 0, 0);
CASE(3, int64_t, int32_t, false, 0, 0);
CASE(1, uint16_t, uint8_t, false, 0, 0);
CASE(2, uint32_t, uint16_t, false, 0, 0);
CASE(3, uint64_t, uint32_t, false, 0, 0);
default:
UNREACHABLE();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment