| Index: src/compiler/machine-operator.cc
|
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
|
| index c0791c0e58722243343cb6c9327642d5b2173ac1..0c51907aa29e84bd28947e48d90af9bf1440814c 100644
|
| --- a/src/compiler/machine-operator.cc
|
| +++ b/src/compiler/machine-operator.cc
|
| @@ -215,10 +215,10 @@ MachineRepresentation StackSlotRepresentationOf(Operator const* op) {
|
| V(Float32RoundTiesEven, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64RoundTiesEven, Operator::kNoProperties, 1, 0, 1)
|
|
|
| -
|
| #define MACHINE_TYPE_LIST(V) \
|
| V(Float32) \
|
| V(Float64) \
|
| + V(Simd128) \
|
| V(Int8) \
|
| V(Uint8) \
|
| V(Int16) \
|
| @@ -230,17 +230,16 @@ MachineRepresentation StackSlotRepresentationOf(Operator const* op) {
|
| V(Pointer) \
|
| V(AnyTagged)
|
|
|
| -
|
| #define MACHINE_REPRESENTATION_LIST(V) \
|
| V(kFloat32) \
|
| V(kFloat64) \
|
| + V(kSimd128) \
|
| V(kWord8) \
|
| V(kWord16) \
|
| V(kWord32) \
|
| V(kWord64) \
|
| V(kTagged)
|
|
|
| -
|
| struct MachineOperatorGlobalCache {
|
| #define PURE(Name, properties, value_input_count, control_input_count, \
|
| output_count) \
|
|
|