Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unbreak names of allocated things in profiler html app
  • Loading branch information
timo committed Mar 13, 2016
1 parent 95b9baf commit cf7fe9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vm/moar/profiler/template.html
Expand Up @@ -1008,6 +1008,7 @@ <h3>Global Deoptimization</h3>
if (node.allocations) {
node.allocations.map(function (alloc) {
if (!typeIdToName[alloc.id]) {
alloc.type = id_to_things[alloc.id];
typeIdToName[alloc.id] = alloc.type == "" ? "<anon>" : alloc.type;
typeIdToAllocations[alloc.id] = 0;
typeIdToAllocationsByType[alloc.id] = [0, 0, 0];
Expand Down

0 comments on commit cf7fe9c

Please sign in to comment.