diff -r -u parrot-2.10.1/include/parrot/oplib/core_ops.h parrot-fixed/include/parrot/oplib/core_ops.h
old
|
new
|
|
19 | 19 | #include "parrot/runcore_api.h" |
20 | 20 | |
21 | 21 | PARROT_EXPORT |
22 | | op_lib_t *Parrot_DynOp_core_2_10_0(PARROT_INTERP, long init); |
| 22 | op_lib_t *Parrot_DynOp_core_2_10_1(PARROT_INTERP, long init); |
23 | 23 | |
24 | 24 | opcode_t * Parrot_end(opcode_t *, PARROT_INTERP); |
25 | 25 | opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP); |
diff -r -u parrot-2.10.1/src/ops/core_ops.c parrot-fixed/src/ops/core_ops.c
old
|
new
|
|
25998 | 25998 | hop_buckets = NULL; |
25999 | 25999 | }PARROT_EXPORT |
26000 | 26000 | op_lib_t * |
26001 | | Parrot_DynOp_core_2_10_0(PARROT_INTERP, long init) { |
| 26001 | Parrot_DynOp_core_2_10_1(PARROT_INTERP, long init) { |
26002 | 26002 | /* initialize and return op_lib ptr */ |
26003 | 26003 | if (init == 1) { |
26004 | 26004 | |
… |
… |
|
26027 | 26027 | |
26028 | 26028 | { |
26029 | 26029 | PMC *const lib = Parrot_pmc_new(interp, enum_class_ParrotLibrary); |
26030 | | ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_10_0; |
| 26030 | ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_10_1; |
26031 | 26031 | dynop_register(interp, lib); |
26032 | 26032 | return lib; |
26033 | 26033 | } |
diff -r -u parrot-2.10.1/t/steps/auto/git_describe-01.t parrot-fixed/t/steps/auto/git_describe-01.t
old
|
new
|
|
75 | 75 | |
76 | 76 | { |
77 | 77 | no warnings 'once'; |
78 | | my $cur = 'RELEASE_2_10_0'; |
| 78 | my $cur = 'RELEASE_2_10_1'; |
79 | 79 | local $Parrot::Git::Describe::current = $cur; |
80 | 80 | my $ret = $step->runstep($conf); |
81 | 81 | ok( $ret, "runstep() returned true value" ); |