| Index: runtime/vm/locations.cc
|
| diff --git a/runtime/vm/locations.cc b/runtime/vm/locations.cc
|
| index bffb807e1881c75cec57408b6fd171ff7f0aecde..078e86f8ee0753bd08d35ba691653f2c32d1a89a 100644
|
| --- a/runtime/vm/locations.cc
|
| +++ b/runtime/vm/locations.cc
|
| @@ -77,6 +77,8 @@ const char* Location::Name() const {
|
| void Location::PrintTo(BufferFormatter* f) const {
|
| if (kind() == kStackSlot) {
|
| f->Print("S%+d", stack_index());
|
| + } else if (kind() == kDoubleStackSlot) {
|
| + f->Print("DS%+d", stack_index());
|
| } else {
|
| f->Print("%s", Name());
|
| }
|
|
|