Index: src/compiler/machine-operator.cc |
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
index f2b540665b319bb3624deb9de51bb94851ad682e..f09717a21d1275cf71de76140cdda1be44b8de3d 100644 |
--- a/src/compiler/machine-operator.cc |
+++ b/src/compiler/machine-operator.cc |
@@ -150,6 +150,8 @@ MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) { |
V(ImpossibleToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
V(ImpossibleToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
V(ImpossibleToTagged, Operator::kNoProperties, 1, 0, 1) \ |
+ V(ImpossibleToTaggedSigned, Operator::kNoProperties, 1, 0, 1) \ |
+ V(ImpossibleToTaggedPointer, Operator::kNoProperties, 1, 0, 1) \ |
V(ImpossibleToBit, Operator::kNoProperties, 1, 0, 1) \ |
V(TruncateFloat64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
V(TruncateInt64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
@@ -426,6 +428,8 @@ MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) { |
V(Int64) \ |
V(Uint64) \ |
V(Pointer) \ |
+ V(TaggedSigned) \ |
+ V(TaggedPointer) \ |
V(AnyTagged) |
#define MACHINE_REPRESENTATION_LIST(V) \ |