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

Unified Diff: test/unittests/base/bits-unittest.cc

Issue 654653004: [arm] Drop SMMLS support. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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/cctest/test-disasm-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/base/bits-unittest.cc
diff --git a/test/unittests/base/bits-unittest.cc b/test/unittests/base/bits-unittest.cc
index 65b0a76a013a00137c05d71f54003b7e410c3e4c..be41007f691128a0838b05847e5dbe3ac34c88d5 100644
--- a/test/unittests/base/bits-unittest.cc
+++ b/test/unittests/base/bits-unittest.cc
@@ -224,17 +224,6 @@ TEST(Bits, SignedMulHighAndAdd32) {
}
}
-
-TEST(Bits, SignedMulHighAndSub32) {
- TRACED_FORRANGE(int32_t, i, 1, 50) {
- EXPECT_EQ(i, SignedMulHighAndSub32(0, 0, i));
- TRACED_FORRANGE(int32_t, j, 1, i) {
- EXPECT_EQ(i, SignedMulHighAndSub32(j, j, i));
- }
- EXPECT_EQ(i - 1, SignedMulHighAndSub32(1024 * 1024 * 1024, 4, i));
- }
-}
-
} // namespace bits
} // namespace base
} // namespace v8
« no previous file with comments | « test/cctest/test-disasm-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698