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 christian.heimes
Recipients Arfrever, bkabrda, christian.heimes
Date 2013-07-07.19:02:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373223744.56.0.177088026737.issue18028@psf.upfronthosting.co.za>
In-reply-to
Content
The warning is caused by the X86_64 code for timestamps:

#define READ_TIMESTAMP(val) \
    __asm__ __volatile__("rdtsc" : \
                         "=a" (((int*)&(val))[0]), "=d" (((int*)&(val))[1]));

The patch fixes the issue with two temp vars.
History
Date User Action Args
2013-07-07 19:02:24christian.heimessetrecipients: + christian.heimes, Arfrever, bkabrda
2013-07-07 19:02:24christian.heimessetmessageid: <1373223744.56.0.177088026737.issue18028@psf.upfronthosting.co.za>
2013-07-07 19:02:24christian.heimeslinkissue18028 messages
2013-07-07 19:02:24christian.heimescreate