# New Ticket Created by Jan-Olof Hendig # Please include the string: [perl #131027] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=131027 >
Something's amiss when viewing the output from –profile in the browser. Steps to reproduce (this is in a 32-bit vm running Linux Mint using Firefox 52): dogbert@dogbert-VirtualBox ~ $ perl6 -v This is Rakudo version 2017.03-13-g0c6281518 built on MoarVM version 2017.03 implementing Perl 6.c. dogbert@dogbert-VirtualBox ~ $ cat euler-1.pl6 use v6; say (1..^1000).grep( -> $x { $x %% 3 || $x %% 5 }).sum; dogbert@dogbert-VirtualBox ~ $ perl6 --profile euler-1.pl6 233168 Writing profiler output to profile-1490031420.9415.html Load the profile in Firefox and click either the ‘GC’ or ‘Allocations’ tabs On my system it shows the ‘OSR/Deopt’ tab instead /dogbert17