| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index 98621eb46827da5670f0e8ca01053b28dc5227be..a8a1b9b50f466440430aa1e4a231aa8121762d8f 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -1448,6 +1448,11 @@ void InstructionSelector::VisitNode(Node* node) {
|
| }
|
| case IrOpcode::kAtomicStore:
|
| return VisitAtomicStore(node);
|
| + case IrOpcode::kAtomicExchange: {
|
| + MachineType type = AtomicExchangeRepresentationOf(node->op());
|
| + MarkAsRepresentation(type.representation(), node);
|
| + return VisitAtomicExchange(node);
|
| + }
|
| case IrOpcode::kProtectedLoad: {
|
| LoadRepresentation type = LoadRepresentationOf(node->op());
|
| MarkAsRepresentation(type.representation(), node);
|
|
|