diff options
Diffstat (limited to 'deps/v8/test/unittests/compiler/simplified-operator-unittest.cc')
-rw-r--r-- | deps/v8/test/unittests/compiler/simplified-operator-unittest.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/deps/v8/test/unittests/compiler/simplified-operator-unittest.cc b/deps/v8/test/unittests/compiler/simplified-operator-unittest.cc index febd76a528..d32dcaec12 100644 --- a/deps/v8/test/unittests/compiler/simplified-operator-unittest.cc +++ b/deps/v8/test/unittests/compiler/simplified-operator-unittest.cc @@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "src/compiler/simplified-operator.h" #include "src/compiler/opcodes.h" -#include "src/compiler/operator.h" #include "src/compiler/operator-properties.h" -#include "src/compiler/simplified-operator.h" -#include "src/types.h" +#include "src/compiler/operator.h" +#include "src/compiler/types.h" #include "test/unittests/test-utils.h" namespace v8 { @@ -63,6 +63,8 @@ const PureOperator kPureOperators[] = { PURE(ChangeTaggedToBit, Operator::kNoProperties, 1), PURE(ChangeBitToTagged, Operator::kNoProperties, 1), PURE(TruncateTaggedToWord32, Operator::kNoProperties, 1), + PURE(TruncateTaggedToFloat64, Operator::kNoProperties, 1), + PURE(TruncateTaggedToBit, Operator::kNoProperties, 1), PURE(ObjectIsNumber, Operator::kNoProperties, 1), PURE(ObjectIsReceiver, Operator::kNoProperties, 1), PURE(ObjectIsSmi, Operator::kNoProperties, 1) |