Index: src/crankshaft/hydrogen-instructions.h |
diff --git a/src/crankshaft/hydrogen-instructions.h b/src/crankshaft/hydrogen-instructions.h |
index 5a4b3f86d1668be628ccc97ad3c35d1446c39994..84da50446716eda0186b13df478eb4633e6358d9 100644 |
--- a/src/crankshaft/hydrogen-instructions.h |
+++ b/src/crankshaft/hydrogen-instructions.h |
@@ -2789,8 +2789,6 @@ class HCheckValue final : public HUnaryOperation { |
bool in_new_space = isolate->heap()->InNewSpace(*func); |
// NOTE: We create an uninitialized Unique and initialize it later. |
// This is because a JSFunction can move due to GC during graph creation. |
- // TODO(titzer): This is a migration crutch. Replace with some kind of |
- // Uniqueness scope later. |
Unique<JSFunction> target = Unique<JSFunction>::CreateUninitialized(func); |
HCheckValue* check = new(zone) HCheckValue(value, target, in_new_space); |
return check; |
@@ -3320,7 +3318,6 @@ class HPhi final : public HValue { |
Representation representation_from_non_phi_uses_ = Representation::None(); |
bool has_type_feedback_from_uses_ = false; |
- // TODO(titzer): we can't eliminate the receiver for generating backtraces |
bool IsDeletable() const override { return !IsReceiver(); } |
}; |