mirror of
https://github.com/python/cpython.git
synced 2025-09-02 06:57:58 +00:00
replace Py_(u)intptr_t with the c99 standard types
This commit is contained in:
parent
3c397e4c39
commit
ca47063998
21 changed files with 86 additions and 86 deletions
|
@ -476,9 +476,9 @@ compiler_unit_check(struct compiler_unit *u)
|
|||
{
|
||||
basicblock *block;
|
||||
for (block = u->u_blocks; block != NULL; block = block->b_list) {
|
||||
assert((Py_uintptr_t)block != 0xcbcbcbcbU);
|
||||
assert((Py_uintptr_t)block != 0xfbfbfbfbU);
|
||||
assert((Py_uintptr_t)block != 0xdbdbdbdbU);
|
||||
assert((uintptr_t)block != 0xcbcbcbcbU);
|
||||
assert((uintptr_t)block != 0xfbfbfbfbU);
|
||||
assert((uintptr_t)block != 0xdbdbdbdbU);
|
||||
if (block->b_instr != NULL) {
|
||||
assert(block->b_ialloc > 0);
|
||||
assert(block->b_iused > 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue