| Index: tools/ic-processor.js
|
| diff --git a/tools/ic-processor.js b/tools/ic-processor.js
|
| index 41bd336c9aa4a0f36bc8b8c96a2c9b6031f278b0..6623b69ed55a26e4fa0145f767b52a56a1f5ba70 100644
|
| --- a/tools/ic-processor.js
|
| +++ b/tools/ic-processor.js
|
| @@ -168,7 +168,7 @@ IcProcessor.prototype.formatName = function(entry) {
|
| var re = /(.*):[0-9]+:[0-9]+$/;
|
| var array = re.exec(name);
|
| if (!array) return name;
|
| - return array[1];
|
| + return entry.getState() + array[1];
|
| }
|
|
|
| IcProcessor.prototype.processPropertyIC = function (
|
|
|