One day I woke and decided I want to learn programming as a hobby. For someone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git src/core/dll.c src/core/dll.c | |
index 6817b410f..3b1ea0269 100644 | |
--- src/core/dll.c | |
+++ src/core/dll.c | |
@@ -23,6 +23,7 @@ int MVM_dll_load(MVMThreadContext *tc, MVMString *name, MVMString *path) { | |
}); | |
cpath = MVM_string_utf8_c8_encode_C_string(tc, path); | |
+ fprintf(stderr, "loading '%s'\n", cpath); | |
lib = MVM_nativecall_load_lib(cpath); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git src/core/dll.c src/core/dll.c | |
index 6817b410f..3b1ea0269 100644 | |
--- src/core/dll.c | |
+++ src/core/dll.c | |
@@ -23,6 +23,7 @@ int MVM_dll_load(MVMThreadContext *tc, MVMString *name, MVMString *path) { | |
}); | |
cpath = MVM_string_utf8_c8_encode_C_string(tc, path); | |
+ fprintf(stderr, "loading '%s'\n", cpath); | |
lib = MVM_nativecall_load_lib(cpath); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11.66% moar libc-2.26.so [.] _int_malloc | |
9.98% moar perf-27008.map [.] 0x00007ff240009744 | |
8.68% moar libmoar.so [.] rename_locals | |
8.25% moar libmoar.so [.] MVM_jit_emit_primitive | |
5.49% moar libc-2.26.so [.] malloc_consolidate | |
5.33% moar libmoar.so [.] MVM_interp_run | |
3.36% moar libmoar.so [.] nqp_nfa_run | |
3.10% moar libmoar.so [.] MVM_frame_invoke | |
3.05% moar libmoar.so [.] MVM_frame_find_contextual_by_name | |
1.85% moar libmoar.so [.] gc_mark |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/Perl6/World.nqp b/src/Perl6/World.nqp | |
index 520ce42..d6ceea6 100644 | |
--- a/src/Perl6/World.nqp | |
+++ b/src/Perl6/World.nqp | |
@@ -3939,6 +3939,14 @@ class Perl6::World is HLL::World { | |
my &inner-evaluator := make_levenshtein_evaluator($name, @candidates); | |
my %seen; | |
%seen{$name} := 1; | |
+ | |
+ # RT 126264 |

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f583f22,110704d my $a = "a" x 2**16;for ^1000 {my $b = $a.chop($_)}; |