I the tests for today's cpython using IOC and got only the issues below.
The on-purpose divide by zero should be OK but the shift by -2 probably wants to be fixed.
ARITHMETIC UNDEFINED at </home/regehr/tmp/cpython/Modules/_ctypes/cfield.c, (589:5)> : Op: <<=, Reason : Signed Left Shift: Right operand is negative or is greater than or equal to the width of the promoted left operand, BINARY OPERATION: left (int32): 0 right (int32): -2
ARITHMETIC UNDEFINED at <./Modules/faulthandler.c, (844:11)> : Op: /, Reason : Signed Division: Divisor is 0 || divident is INT_MIN, divisor is -1, BINARY OPERATION: left (int32): 1 right (int32): 0
version info:
regehr@home:~/tmp/cpython$ ./python
Python 3.3.0a4+ (default:24369f6c4a22+, Jun 20 2012, 16:41:04)
[GCC 4.2.1 Compatible Clang 3.1 ((branches/release_31))] on linux
Type "help", "copyright", "credits" or "license" for more information. |