changeset 10917:39e98bb4e79a

Merge
author andrew
date Thu, 25 Feb 2021 00:46:04 +0000
parents 29720c52e25e (diff) bd1ccfcfc1c5 (current diff)
children 631ce052d827
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/agent/src/share/classes/sun/jvm/hotspot/code/CompressedReadStream.java	Mon Feb 22 21:10:12 2021 +0800
+++ b/agent/src/share/classes/sun/jvm/hotspot/code/CompressedReadStream.java	Thu Feb 25 00:46:04 2021 +0000
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -75,7 +75,7 @@
     int rl = readInt();
     int h = reverseInt(rh);
     int l = reverseInt(rl);
-    return Double.longBitsToDouble((h << 32) | ((long)l & 0x00000000FFFFFFFFL));
+    return Double.longBitsToDouble(((long)h << 32) | ((long)l & 0x00000000FFFFFFFFL));
   }
 
   public long readLong() {