Home | History | Annotate | Download | only in cpython2

Lines Matching refs:fwrapv

6003         # For gcc 4.x we need to use -fwrapv so lets check if its supported
6004 if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
6005 WRAP="-fwrapv"
6008 # Clang also needs -fwrapv
6010 *clang*) WRAP="-fwrapv"