| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index 07e78f3368e251ea89cd57d81d6045a8e873f4b7..3fc641a2fcce789d3e6d78d8bd86c7ab0d44d9c1 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -1438,15 +1438,16 @@ void HCheckMaps::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void HCheckFunction::PrintDataTo(StringStream* stream) {
|
| +void HCheckValue::PrintDataTo(StringStream* stream) {
|
| value()->PrintNameTo(stream);
|
| - stream->Add(" %p", *target());
|
| + stream->Add(" ");
|
| + object()->ShortPrint(stream);
|
| }
|
|
|
|
|
| -HValue* HCheckFunction::Canonicalize() {
|
| +HValue* HCheckValue::Canonicalize() {
|
| return (value()->IsConstant() &&
|
| - HConstant::cast(value())->UniqueValueIdsMatch(target_unique_id_))
|
| + HConstant::cast(value())->UniqueValueIdsMatch(object_unique_id_))
|
| ? NULL
|
| : this;
|
| }
|
| @@ -4002,7 +4003,7 @@ void HCheckHeapObject::Verify() {
|
| }
|
|
|
|
|
| -void HCheckFunction::Verify() {
|
| +void HCheckValue::Verify() {
|
| HInstruction::Verify();
|
| ASSERT(HasNoUses());
|
| }
|
|
|