| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index d4938e5c3848d9509b7d0603ae19c2cf253a4373..1e87a4b402e0b0b922767fc01bea3e374c342d1d 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -984,6 +984,16 @@ void HInductionVariableAnnotation::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| +void HDeoptCounter::PrintDataTo(StringStream* stream) {
|
| + stream->Add("c%d", id());
|
| +}
|
| +
|
| +
|
| +void HDeoptCounterAdd::PrintDataTo(StringStream* stream) {
|
| + stream->Add("c%d +(%d)", counter()->id(), delta());
|
| +}
|
| +
|
| +
|
| void HDummyUse::PrintDataTo(StringStream* stream) {
|
| value()->PrintNameTo(stream);
|
| }
|
|
|