Fix IR serialization issue

This commit is contained in:
Alexey Andreev 2019-03-11 18:36:10 +03:00
parent a8226ef6a3
commit eeaa71072a

View File

@ -65,7 +65,7 @@ public class VarDataInput {
public long readSignedLong() throws IOException { public long readSignedLong() throws IOException {
long value = readUnsignedLong(); long value = readUnsignedLong();
return (value & 1) == 0 ? (value >> 1) : ~(value >> 1); return (value & 1) == 0 ? (value >>> 1) : ~(value >>> 1);
} }
public float readFloat() throws IOException { public float readFloat() throws IOException {