| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index f7adea6ce60fac498035dfc1dd04a997410e11e7..9bbe164996c2493fc5ad98c0beee402745d3d19b 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -726,7 +726,7 @@ void HTypeofIs::PrintDataTo(StringStream* stream) {
|
|
|
| void HChange::PrintDataTo(StringStream* stream) {
|
| HUnaryOperation::PrintDataTo(stream);
|
| - stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic());
|
| + stream->Add(" %s to %s", from_.Mnemonic(), to_.Mnemonic());
|
|
|
| if (CanTruncateToInt32()) stream->Add(" truncating-int32");
|
| if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?");
|
| @@ -1342,29 +1342,18 @@ void HStoreKeyedSpecializedArrayElement::PrintDataTo(
|
| }
|
|
|
|
|
| -void HLoadGlobalCell::PrintDataTo(StringStream* stream) {
|
| +void HLoadGlobal::PrintDataTo(StringStream* stream) {
|
| stream->Add("[%p]", *cell());
|
| if (check_hole_value()) stream->Add(" (deleteable/read-only)");
|
| }
|
|
|
|
|
| -void HLoadGlobalGeneric::PrintDataTo(StringStream* stream) {
|
| - stream->Add("%o ", *name());
|
| -}
|
| -
|
| -
|
| -void HStoreGlobalCell::PrintDataTo(StringStream* stream) {
|
| +void HStoreGlobal::PrintDataTo(StringStream* stream) {
|
| stream->Add("[%p] = ", *cell());
|
| value()->PrintNameTo(stream);
|
| }
|
|
|
|
|
| -void HStoreGlobalGeneric::PrintDataTo(StringStream* stream) {
|
| - stream->Add("%o = ", *name());
|
| - value()->PrintNameTo(stream);
|
| -}
|
| -
|
| -
|
| void HLoadContextSlot::PrintDataTo(StringStream* stream) {
|
| value()->PrintNameTo(stream);
|
| stream->Add("[%d]", slot_index());
|
|
|