Christian Heimes added the comment:

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.

----------
keywords: +patch
nosy: +christian.heimes
priority: normal -> low
stage:  -> patch review
type:  -> compile error
versions: +Python 3.4
Added file: http://bugs.python.org/file30846/tsc_strict_aliasing.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18028>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to