| Index: runtime/vm/compiler.cc
|
| ===================================================================
|
| --- runtime/vm/compiler.cc (revision 41422)
|
| +++ runtime/vm/compiler.cc (working copy)
|
| @@ -761,9 +761,7 @@
|
| RawLocalVarDescriptors::VarInfo var_info;
|
| var_descriptors.GetInfo(i, &var_info);
|
| const int8_t kind = var_info.kind();
|
| - if (kind == RawLocalVarDescriptors::kSavedEntryContext) {
|
| - OS::Print(" saved caller's CTX reg offset %d\n", var_info.index());
|
| - } else if (kind == RawLocalVarDescriptors::kSavedCurrentContext) {
|
| + if (kind == RawLocalVarDescriptors::kSavedCurrentContext) {
|
| OS::Print(" saved current CTX reg offset %d\n", var_info.index());
|
| } else {
|
| if (kind == RawLocalVarDescriptors::kContextLevel) {
|
|
|