This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author donmez
Recipients alexandre.vassalotti, christian.heimes, donmez, gregory.p.smith, gvanrossum, loewis
Date 2008-01-09.18:12:52
SpamBayes Score 0.22806309
Marked as misclassified No
Message-id <1199902391.58.0.807062869714.issue1621@psf.upfronthosting.co.za>
In-reply-to
Content
-Wstrict-overflow=3 with gcc 4.3 trunk here shows :

Modules/cPickle.c: In function 'Unpickler_noload':
Modules/cPickle.c:4232: warning: assuming signed overflow does not occur
when assuming that (X - c) > X is always false

Modules/cPickle.c:194: warning: assuming signed overflow does not occur
when assuming that (X - c) > X is always false
Modules/cPickle.c: In function 'load':
Modules/cPickle.c:4232: warning: assuming signed overflow does not occur
when assuming that (X - c) > X is always false

But also note that -fno-strict-aliasing is also just another workaround
and its more serious than -fwrapv.
History
Date User Action Args
2008-01-09 18:13:11donmezsetspambayes_score: 0.228063 -> 0.22806309
recipients: + donmez, gvanrossum, loewis, gregory.p.smith, christian.heimes, alexandre.vassalotti
2008-01-09 18:13:11donmezsetspambayes_score: 0.228063 -> 0.228063
messageid: <1199902391.58.0.807062869714.issue1621@psf.upfronthosting.co.za>
2008-01-09 18:12:52donmezlinkissue1621 messages
2008-01-09 18:12:52donmezcreate