diff options
Diffstat (limited to 'deps/v8/src/hydrogen-representation-changes.cc')
-rw-r--r-- | deps/v8/src/hydrogen-representation-changes.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/deps/v8/src/hydrogen-representation-changes.cc b/deps/v8/src/hydrogen-representation-changes.cc index 7d0720c604..07fc8be38c 100644 --- a/deps/v8/src/hydrogen-representation-changes.cc +++ b/deps/v8/src/hydrogen-representation-changes.cc @@ -61,11 +61,10 @@ void HRepresentationChangesPhase::InsertRepresentationChangeForUse( if (new_value == NULL) { new_value = new(graph()->zone()) HChange( value, to, is_truncating_to_smi, is_truncating_to_int); - if (!use_value->operand_position(use_index).IsUnknown()) { + if (use_value->operand_position(use_index) != RelocInfo::kNoPosition) { new_value->set_position(use_value->operand_position(use_index)); } else { - ASSERT(!FLAG_hydrogen_track_positions || - !graph()->info()->IsOptimizing()); + ASSERT(!FLAG_emit_opt_code_positions || !graph()->info()->IsOptimizing()); } } |