Index: runtime/vm/simulator_mips.cc |
diff --git a/runtime/vm/simulator_mips.cc b/runtime/vm/simulator_mips.cc |
index a828752d6f87918e65f116d65887a11ad867bedb..8611f560c0acc89f7053d1a62a83210518672ea7 100644 |
--- a/runtime/vm/simulator_mips.cc |
+++ b/runtime/vm/simulator_mips.cc |
@@ -1257,7 +1257,7 @@ void Simulator::DoBreak(Instr *instr) { |
ASSERT(sizeof(NativeArguments) == 4*kWordSize); |
arguments.thread_ = reinterpret_cast<Thread*>(get_register(A0)); |
arguments.argc_tag_ = get_register(A1); |
- arguments.argv_ = reinterpret_cast<RawObject*(*)[]>(get_register(A2)); |
+ arguments.argv_ = reinterpret_cast<RawObject**>(get_register(A2)); |
arguments.retval_ = reinterpret_cast<RawObject**>(get_register(A3)); |
SimulatorRuntimeCall target = |
reinterpret_cast<SimulatorRuntimeCall>(external); |