| Index: runtime/vm/deopt_instructions.h
|
| diff --git a/runtime/vm/deopt_instructions.h b/runtime/vm/deopt_instructions.h
|
| index 36b1b7f85325a44c475c8f3248de677845cc8d22..f55c12029411430886d0f786d55b147d4cc15930 100644
|
| --- a/runtime/vm/deopt_instructions.h
|
| +++ b/runtime/vm/deopt_instructions.h
|
| @@ -134,9 +134,9 @@ class DeoptContext {
|
| deferred_boxes_);
|
| }
|
|
|
| - void DeferUint32x4Materialization(simd128_value_t value,
|
| - RawUint32x4** slot) {
|
| - deferred_boxes_ = new DeferredUint32x4(
|
| + void DeferInt32x4Materialization(simd128_value_t value,
|
| + RawInt32x4** slot) {
|
| + deferred_boxes_ = new DeferredInt32x4(
|
| value,
|
| reinterpret_cast<RawInstance**>(slot),
|
| deferred_boxes_);
|
| @@ -210,12 +210,12 @@ class DeoptInstr : public ZoneAllocated {
|
| kFpuRegister,
|
| kInt64FpuRegister,
|
| kFloat32x4FpuRegister,
|
| - kUint32x4FpuRegister,
|
| + kInt32x4FpuRegister,
|
| kStackSlot,
|
| kDoubleStackSlot,
|
| kInt64StackSlot,
|
| kFloat32x4StackSlot,
|
| - kUint32x4StackSlot,
|
| + kInt32x4StackSlot,
|
| kPcMarker,
|
| kPp,
|
| kCallerFp,
|
|
|