aboutsummaryrefslogtreecommitdiff
path: root/java/javel/files/patch-cp_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'java/javel/files/patch-cp_info.cc')
-rw-r--r--java/javel/files/patch-cp_info.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/java/javel/files/patch-cp_info.cc b/java/javel/files/patch-cp_info.cc
deleted file mode 100644
index 22c47c938e07..000000000000
--- a/java/javel/files/patch-cp_info.cc
+++ /dev/null
@@ -1,13 +0,0 @@
---- cp_info.cc.orig Wed Jan 30 19:28:19 2002
-+++ cp_info.cc Wed Jan 30 19:28:30 2002
-@@ -163,8 +163,8 @@
- int expo = (high_bytes >> 20) & 0x7ff;
- expo -= 1075;
- llong mant = (expo == 0) ?
-- (bytes & 0xfffffffffffff) << 1 :
-- (bytes & 0xfffffffffffff) | 0x10000000000000;
-+ (bytes & 0xfffffffffffffLL) << 1 :
-+ (bytes & 0xfffffffffffffLL) | 0x10000000000000LL;
- long double x = sign;
- x *= mant;
- x *= pow(2.0, expo);