[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/python/cpython/3.6/Python/wordcode_helpers.h [Back]  [Original]

/* This file contains code shared by the compiler and the peephole
   optimizer.
 */

#ifdef WORDS_BIGENDIAN
#  define PACKOPARG(opcode, oparg) ((_Py_CODEUNIT)(((opcode) > 8) & 0xff);
            /* fall through */
        case 1:
            *codestr++ = PACKOPARG(opcode, oparg & 0xff);
            break;
        default:
            assert(0);
    }
}

Web Proxy Viewer  |  New URL  |  Original Page