| Index: tracing/tracing/extras/importer/v8/codemap.html
|
| diff --git a/tracing/tracing/extras/importer/v8/codemap.html b/tracing/tracing/extras/importer/v8/codemap.html
|
| index c33cf6d75581950ec385a3d6a31d65e27b6e95e5..491d17ca492dd592b26e6101e4c89df88ce98f70 100644
|
| --- a/tracing/tracing/extras/importer/v8/codemap.html
|
| +++ b/tracing/tracing/extras/importer/v8/codemap.html
|
| @@ -133,7 +133,8 @@ tr.exportTo('tr.e.importer.v8', function() {
|
| while (addr >= start) {
|
| var node = tree.findGreatestLessThan(addr);
|
| if (!node) break;
|
| - var start2 = node.key, end2 = start2 + node.value.size;
|
| + var start2 = node.key;
|
| + var end2 = start2 + node.value.size;
|
| if (start2 < end && start < end2) toDelete.push(start2);
|
| addr = start2 - 1;
|
| }
|
|
|