| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index 8e0d89e8227c92054e236f392efbf32e977df401..edbffc2e241e5de193c6a8c960ed5d0978b33f13 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -1468,15 +1468,6 @@ void HChange::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void HJSArrayLength::PrintDataTo(StringStream* stream) {
|
| - value()->PrintNameTo(stream);
|
| - if (HasTypeCheck()) {
|
| - stream->Add(" ");
|
| - typecheck()->PrintNameTo(stream);
|
| - }
|
| -}
|
| -
|
| -
|
| HValue* HUnaryMathOperation::Canonicalize() {
|
| if (op() == kMathFloor) {
|
| // If the input is integer32 then we replace the floor instruction
|
| @@ -2416,6 +2407,10 @@ void HParameter::PrintDataTo(StringStream* stream) {
|
| void HLoadNamedField::PrintDataTo(StringStream* stream) {
|
| object()->PrintNameTo(stream);
|
| stream->Add(" @%d%s", offset(), is_in_object() ? "[in-object]" : "");
|
| + if (HasTypeCheck()) {
|
| + stream->Add(" ");
|
| + typecheck()->PrintNameTo(stream);
|
| + }
|
| }
|
|
|
|
|
|
|