Changeset 567
- Timestamp:
- 08/17/2008 04:27:19 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
const_string_opcodes_php4.x.h (modified) (1 diff)
-
const_string_opcodes_php5.1.h (modified) (1 diff)
-
const_string_opcodes_php6.x.h (modified) (1 diff)
-
mkopcode.awk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/const_string_opcodes_php4.x.h
r393 r567 1 /* size = 11 2*/1 /* size = 113 */ 2 2 static const char *const xc_opcode_names[] = { 3 3 /* 0 */ "NOP", -
trunk/const_string_opcodes_php5.1.h
r562 r567 1 /* size = 15 3*/1 /* size = 154 */ 2 2 static const char *const xc_opcode_names[] = { 3 3 /* 0 */ "NOP", -
trunk/const_string_opcodes_php6.x.h
r562 r567 1 /* size = 15 3*/1 /* size = 154 */ 2 2 static const char *const xc_opcode_names[] = { 3 3 /* 0 */ "NOP", -
trunk/mkopcode.awk
r393 r567 54 54 opcodes[112] = "UNDEF"; 55 55 } 56 printf "/* size = %d */\n", max ;56 printf "/* size = %d */\n", max + 1; 57 57 print "static const char *const xc_opcode_names[] = {"; 58 58 for (i = 0; i <= max; i ++) {

