| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index 867c9e07d76b0b01173e7ec5c38a7030be2aaac7..99a79d93688091799a237bff03cf9cd214542be2 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -2381,7 +2381,7 @@ RUNTIME_FUNCTION(Runtime_LoadIC_Miss) {
|
| // Sanity check: The loaded value must be a JS-exposed kind of object,
|
| // not something internal (like a Map, or FixedArray). Check this here
|
| // to chase after a rare but recurring crash bug.
|
| - // TODO(jkummerow): Remove this when it has generated a few crash reports.
|
| + // TODO(chromium:527994): Remove this when we have a few crash reports.
|
| if (!result->IsSmi()) {
|
| InstanceType type =
|
| Handle<HeapObject>::cast(result)->map()->instance_type();
|
| @@ -3130,7 +3130,7 @@ RUNTIME_FUNCTION(Runtime_LoadIC_MissFromStubFailure) {
|
| // Sanity check: The loaded value must be a JS-exposed kind of object,
|
| // not something internal (like a Map, or FixedArray). Check this here
|
| // to chase after a rare but recurring crash bug.
|
| - // TODO(jkummerow): Remove this when it has generated a few crash reports.
|
| + // TODO(chromium:527994): Remove this when we have a few crash reports.
|
| if (!result->IsSmi()) {
|
| InstanceType type =
|
| Handle<HeapObject>::cast(result)->map()->instance_type();
|
|
|