summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-04-13 21:38:46 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-04-13 21:38:46 +0000
commit13476c87fb117309d347e09ccf14082fe7da6a72 (patch)
tree5c8582ab56a992922e6877fdd0978b7eeb8c4bf2 /pp.c
parent5f3774a9b49fbaa1b06fec2cad77079ee509d6ca (diff)
downloadperl-13476c87fb117309d347e09ccf14082fe7da6a72.tar.gz
Add information about the two DEC C compiler optimizer bugs
(what patch levels of the compilers fix them). p4raw-id: //depot/cfgperl@3258
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c28
1 files changed, 21 insertions, 7 deletions
diff --git a/pp.c b/pp.c
index d837d4b9d1..8c48574493 100644
--- a/pp.c
+++ b/pp.c
@@ -3677,7 +3677,25 @@ PP(pp_unpack)
#ifdef __osf__
/* Without the dummy below unpack("i", pack("i",-1))
* return 0xFFffFFff instead of -1 for Digital Unix V4.0
- * cc with optimization turned on */
+ * cc with optimization turned on.
+ *
+ * The bug was detected in
+ * DEC C V5.8-009 on Digital UNIX V4.0 (Rev. 1091) (V4.0E)
+ * with optimization (-O4) turned on.
+ * DEC C V5.2-040 on Digital UNIX V4.0 (Rev. 564) (V4.0B)
+ * does not have this problem even with -O4.
+ *
+ * This bug was reported as DECC_BUGS 1431
+ * and tracked internally as GEM_BUGS 7775.
+ *
+ * The bug is fixed in
+ * Tru64 UNIX V5.0: Compaq C V6.1-006 or later
+ * UNIX V4.0F support: DEC C V5.9-006 or later
+ * UNIX V4.0E support: DEC C V5.8-011 or later
+ * and also in DTK.
+ *
+ * See also few lines later for the same bug.
+ */
(aint) ?
sv_setiv(sv, (IV)aint) :
#endif
@@ -3709,12 +3727,8 @@ PP(pp_unpack)
sv = NEWSV(41, 0);
#ifdef __osf__
/* Without the dummy below unpack("I", pack("I",0xFFFFFFFF))
- * returns 1.84467440737096e+19 instead of 0xFFFFFFFF for
- * DEC C V5.8-009 on Digital UNIX V4.0 (Rev. 1091) (aka V4.0D)
- * with optimization turned on.
- * (DEC C V5.2-040 on Digital UNIX V4.0 (Rev. 564) (aka V4.0B)
- * does not have this problem even with -O4)
- */
+ * returns 1.84467440737096e+19 instead of 0xFFFFFFFF.
+ * See details few lines earlier. */
(auint) ?
sv_setuv(sv, (UV)auint) :
#endif