| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index a6cfa50ef249b4def953c3b9dab106d5029127e5..31609587f1482ef15a49e0aab5f964224214fbf9 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -1440,6 +1440,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);
|
|
|