Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: test/unittests/compiler/machine-operator-reducer-unittest.cc

Issue 2070813002: Revert of [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/unittests/compiler/js-builtin-reducer-unittest.cc ('k') | test/unittests/compiler/node-test-utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/compiler/machine-operator-reducer-unittest.cc
diff --git a/test/unittests/compiler/machine-operator-reducer-unittest.cc b/test/unittests/compiler/machine-operator-reducer-unittest.cc
index 2a161ce82d80da50c9d641493a22ec0f40bac654..9d7482af76df973f45b98cac3391179fa43cdecd 100644
--- a/test/unittests/compiler/machine-operator-reducer-unittest.cc
+++ b/test/unittests/compiler/machine-operator-reducer-unittest.cc
@@ -1448,19 +1448,6 @@
}
// -----------------------------------------------------------------------------
-// Float64Exp
-
-TEST_F(MachineOperatorReducerTest, Float64ExpWithConstant) {
- TRACED_FOREACH(double, x, kFloat64Values) {
- Reduction const r =
- Reduce(graph()->NewNode(machine()->Float64Exp(), Float64Constant(x)));
- ASSERT_TRUE(r.Changed());
- EXPECT_THAT(r.replacement(),
- IsFloat64Constant(NanSensitiveDoubleEq(base::ieee754::exp(x))));
- }
-}
-
-// -----------------------------------------------------------------------------
// Float64Log
TEST_F(MachineOperatorReducerTest, Float64LogWithConstant) {
« no previous file with comments | « test/unittests/compiler/js-builtin-reducer-unittest.cc ('k') | test/unittests/compiler/node-test-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698