[Python-checkins] python/dist/src/Include opcode.h,2.44,2.45
rhettinger at users.sourceforge.net
rhettinger at users.sourceforge.net
Mon Jun 21 12:31:19 EDT 2004
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26471/Include
Modified Files:
opcode.h
Log Message:
Install two code generation optimizations that depend on NOP.
Reduces the cost of "not" to almost zero.
Index: opcode.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/opcode.h,v
retrieving revision 2.44
retrieving revision 2.45
diff -C2 -d -r2.44 -r2.45
*** opcode.h 7 Mar 2004 07:31:05 -0000 2.44
--- opcode.h 21 Jun 2004 16:31:15 -0000 2.45
***************
*** 14,17 ****
--- 14,18 ----
#define DUP_TOP 4
#define ROT_FOUR 5
+ #define NOP 9
#define UNARY_POSITIVE 10
More information about the Python-checkins
mailing list