As this test is not testing a real rotate. And it's not testing implementation in any platform.
int shift = 2;
byte b = 83;
byte res = (byte) (b << shift | b >> -shift); // res = 76
// but a real left rotate of 83 should be 77 ??
int shift = 2;
byte b = 83;
byte res = (byte) (b << shift | b >> -shift); // res = 76
// but a real left rotate of 83 should be 77 ??
- caused by
-
JDK-8286847 Rotate vectors don't support byte or short
-
- Resolved
-
- relates to
-
JDK-8353600 RISC-V: compiler/vectorization/TestRotateByteAndShortVector.java is failing with Zvbb
-
- Open
-