Index: src/crankshaft/hydrogen-store-elimination.cc |
diff --git a/src/crankshaft/hydrogen-store-elimination.cc b/src/crankshaft/hydrogen-store-elimination.cc |
index ba32c8ad6b4cedc024a45d3d47a255226a6fc459..57c7880aa751da5c7507d9cdc1554377d1625ce9 100644 |
--- a/src/crankshaft/hydrogen-store-elimination.cc |
+++ b/src/crankshaft/hydrogen-store-elimination.cc |
@@ -36,7 +36,6 @@ void HStoreEliminationPhase::Run() { |
HInstruction* instr = it.Current(); |
if (instr->CheckFlag(HValue::kIsDead)) continue; |
- // TODO(titzer): eliminate unobserved HStoreKeyed instructions too. |
switch (instr->opcode()) { |
case HValue::kStoreNamedField: |
// Remove any unobserved stores overwritten by this store. |
@@ -68,7 +67,6 @@ void HStoreEliminationPhase::ProcessStore(HStoreNamedField* store) { |
prev->id(), store->id())); |
unobserved_.Remove(i); |
} else { |
- // TODO(titzer): remove map word clearing from folded allocations. |
i++; |
} |
} |