summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-31 04:35:14 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-31 04:35:14 (GMT)
commitbfa47b072542ea17ce478572d202b8ef60120737 (patch)
treee03694343ecbd9a94ab927d1745fa658d7941b48 /Python/pythonrun.c
parent41eb14dffab5c5b559028f062d209b5cde8224f4 (diff)
downloadcpython-bfa47b072542ea17ce478572d202b8ef60120737.zip
cpython-bfa47b072542ea17ce478572d202b8ef60120737.tar.gz
cpython-bfa47b072542ea17ce478572d202b8ef60120737.tar.bz2
Correct name mangling algorithm, and add a comment.
Diffstat (limited to 'Python/pythonrun.c')
0 files changed, 0 insertions, 0 deletions
span> 0; #else // Fallback for 32-bit build where 64-bit version not available // assuming little endian union { unsigned __int64 ll; unsigned long l[2]; } s; s.ll = x; if (_BitScanForward(&i, s.l[0])) { return i + 1; } else if(_BitScanForward(&i, s.l[1])) { return i + 33; } return 0; #endif } #else # define ffsll(x) __builtin_ffsll(x) # define ffsl(x) __builtin_ffsl(x) # define ffs(x) __builtin_ffs(x) #endif #endif /* strings_h */