| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index 074c021458681cdafe95dce8d7c6b4431f29ef0b..98c1cf994d6686fd9e660c850e078242ae965674 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -84,8 +84,8 @@ FlowGraphCompiler::FlowGraphCompiler(Assembler* assembler,
|
| Isolate::Current()->object_store()->double_class())),
|
| float32x4_class_(Class::ZoneHandle(
|
| Isolate::Current()->object_store()->float32x4_class())),
|
| - uint32x4_class_(Class::ZoneHandle(
|
| - Isolate::Current()->object_store()->uint32x4_class())),
|
| + int32x4_class_(Class::ZoneHandle(
|
| + Isolate::Current()->object_store()->int32x4_class())),
|
| list_class_(Class::ZoneHandle(
|
| Library::Handle(Library::CoreLibrary()).
|
| LookupClass(Symbols::List()))),
|
| @@ -502,7 +502,7 @@ Environment* FlowGraphCompiler::SlowPathEnvironmentFor(
|
| it.SetCurrentLocation(Location::DoubleStackSlot(index));
|
| break;
|
| case kUnboxedFloat32x4:
|
| - case kUnboxedUint32x4:
|
| + case kUnboxedInt32x4:
|
| it.SetCurrentLocation(Location::QuadStackSlot(index));
|
| break;
|
| default:
|
|
|