| Index: runtime/vm/locations.h
|
| diff --git a/runtime/vm/locations.h b/runtime/vm/locations.h
|
| index 8a653ebccb478e8e6858e98c85b3e8a798da24f1..d57b2fd0fdde1ef51190dd19e1de3ebf3de2348f 100644
|
| --- a/runtime/vm/locations.h
|
| +++ b/runtime/vm/locations.h
|
| @@ -8,6 +8,7 @@
|
| #include "vm/allocation.h"
|
| #include "vm/assembler.h"
|
| #include "vm/bitfield.h"
|
| +#include "vm/log.h"
|
|
|
| namespace dart {
|
|
|
| @@ -516,7 +517,7 @@ class RegisterSet : public ValueObject {
|
| for (intptr_t i = 0; i < kNumberOfCpuRegisters; i++) {
|
| Register r = static_cast<Register>(i);
|
| if (ContainsRegister(r)) {
|
| - OS::Print("%s %s\n", Assembler::RegisterName(r),
|
| + ISL_Print("%s %s\n", Assembler::RegisterName(r),
|
| IsTagged(r) ? "tagged" : "untagged");
|
| }
|
| }
|
| @@ -524,7 +525,7 @@ class RegisterSet : public ValueObject {
|
| for (intptr_t i = 0; i < kNumberOfFpuRegisters; i++) {
|
| FpuRegister r = static_cast<FpuRegister>(i);
|
| if (ContainsFpuRegister(r)) {
|
| - OS::Print("%s\n", Assembler::FpuRegisterName(r));
|
| + ISL_Print("%s\n", Assembler::FpuRegisterName(r));
|
| }
|
| }
|
| }
|
|
|