| Index: src/compiler/x64/instruction-selector-x64.cc
|
| diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc
|
| index b87178a2e4946035ae374c0557e5f5b65c1dfa0a..e4ab8b83d49ce6e4de3d748f1e23e7f340edf646 100644
|
| --- a/src/compiler/x64/instruction-selector-x64.cc
|
| +++ b/src/compiler/x64/instruction-selector-x64.cc
|
| @@ -2045,6 +2045,12 @@ void InstructionSelector::VisitFloat64InsertHighWord32(Node* node) {
|
| g.UseRegister(left), g.Use(right));
|
| }
|
|
|
| +void InstructionSelector::VisitFloat64SilenceNaN(Node* node) {
|
| + X64OperandGenerator g(this);
|
| + Emit(kSSEFloat64SilenceNaN, g.DefineSameAsFirst(node),
|
| + g.UseRegister(node->InputAt(0)));
|
| +}
|
| +
|
| void InstructionSelector::VisitAtomicLoad(Node* node) {
|
| LoadRepresentation load_rep = LoadRepresentationOf(node->op());
|
| DCHECK(load_rep.representation() == MachineRepresentation::kWord8 ||
|
|
|